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
+8 -9
View File
@@ -18,12 +18,17 @@
"""2D drawing generation and serialisation"""
from functools import reduce
import itertools
import math
import json
import math
import operator
import warnings
from collections.abc import Callable, Sequence
from dataclasses import dataclass, field, fields
from functools import reduce
from xml.dom.minidom import parseString
import numpy
import shapely
import ifcopenshell
@@ -31,12 +36,6 @@ import ifcopenshell.geom
import ifcopenshell.util.element
import ifcopenshell.util.selector
from xml.dom.minidom import parseString
from dataclasses import dataclass, fields, field
from collections.abc import Callable, Sequence
import numpy
W = ifcopenshell.ifcopenshell_wrapper
WHITE = numpy.array((1.0, 1.0, 1.0))
@@ -670,9 +669,9 @@ def main(
if __name__ == "__main__":
import argparse
import sys
import time
import argparse
times = []