mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 09:48:32 +00:00
Sort imports
This commit is contained in:
@@ -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 = []
|
||||
|
||||
|
||||
Reference in New Issue
Block a user