Sort imports

This commit is contained in:
Andrej730
2025-12-19 18:53:04 +05:00
parent 29176330e8
commit 13be6ccd45
731 changed files with 2234 additions and 1709 deletions
+5 -5
View File
@@ -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
+6 -4
View File
@@ -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
View File
@@ -1,6 +1,5 @@
from typing import Literal
COUNTRY_CODE = Literal[
"AF",
"AX",
+1 -1
View File
@@ -1,8 +1,8 @@
import yaml
import sys
from pathlib import Path
from typing import Any
import yaml
type_to_python_type = {
"string": "str",