mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-18 11:20:21 +00:00
Sort imports
This commit is contained in:
@@ -1,11 +1,12 @@
|
||||
import xml.etree.ElementTree as ET
|
||||
|
||||
import ifcopenshell
|
||||
import ifcopenshell.util
|
||||
import ifcopenshell.util.attribute
|
||||
import ifcopenshell.util.pset
|
||||
import ifcopenshell.util.schema
|
||||
import xml.etree.ElementTree as ET
|
||||
from xmlschema.validators.exceptions import XMLSchemaValidationError
|
||||
from ifctester.ids import Ids, IdsXmlValidationError, get_schema
|
||||
from xmlschema.validators.exceptions import XMLSchemaValidationError
|
||||
|
||||
# https://github.com/buildingSMART/IDS/blob/9914d568c7ac037acd97e58a0d16e9f93c3e3416/Schema/ids.xsd#L232
|
||||
ifc_schemas = ["IFC2X3", "IFC4", "IFC4X3_ADD2"]
|
||||
|
||||
@@ -16,10 +16,10 @@
|
||||
# You should have received a copy of the GNU Lesser General Public License
|
||||
# along with IfcTester. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
import os
|
||||
import sys
|
||||
import argparse
|
||||
import mimetypes
|
||||
import os
|
||||
import sys
|
||||
|
||||
bonsai_lib_path = os.environ.get("BONSAI_LIB_PATH")
|
||||
print(os.environ)
|
||||
@@ -29,7 +29,7 @@ bonsai_version = os.environ.get("BONSAI_VERSION")
|
||||
if bonsai_lib_path:
|
||||
sys.path.insert(0, bonsai_lib_path)
|
||||
|
||||
from flask import Flask, send_from_directory, send_file
|
||||
from flask import Flask, send_file, send_from_directory
|
||||
|
||||
# Browsers expecting this specific MIME type for .mjs files,
|
||||
# otherwise they fail to load.
|
||||
|
||||
Reference in New Issue
Block a user