mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-18 19:30:25 +00:00
Sort imports
This commit is contained in:
+5
-5
@@ -17,15 +17,15 @@
|
||||
# along with bSDD. If not, see <http://www.gnu.org/licenses/>.
|
||||
from __future__ import annotations
|
||||
|
||||
import uuid
|
||||
import http.server
|
||||
import time
|
||||
import urllib.parse
|
||||
import requests
|
||||
import uuid
|
||||
import webbrowser
|
||||
import http.server
|
||||
from typing import TypedDict, Literal, Optional, TYPE_CHECKING, Any
|
||||
from typing_extensions import NotRequired
|
||||
from typing import TYPE_CHECKING, Any, Literal, Optional, TypedDict
|
||||
|
||||
import requests
|
||||
from typing_extensions import NotRequired
|
||||
|
||||
if TYPE_CHECKING:
|
||||
import ifcopenshell
|
||||
|
||||
@@ -1,11 +1,13 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from .type_hints import *
|
||||
from typing import Optional, Literal
|
||||
from datetime import datetime
|
||||
from pydantic import BaseModel, Field, PrivateAttr, model_validator, ConfigDict
|
||||
import json
|
||||
import weakref
|
||||
from datetime import datetime
|
||||
from typing import Literal, Optional
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, PrivateAttr, model_validator
|
||||
|
||||
from .type_hints import *
|
||||
|
||||
|
||||
def _lower_first(s: str) -> str:
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
from typing import Literal
|
||||
|
||||
|
||||
COUNTRY_CODE = Literal[
|
||||
"AF",
|
||||
"AX",
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import yaml
|
||||
import sys
|
||||
from pathlib import Path
|
||||
from typing import Any
|
||||
|
||||
import yaml
|
||||
|
||||
type_to_python_type = {
|
||||
"string": "str",
|
||||
|
||||
Reference in New Issue
Block a user