From ad35ceef2ae9942ad4226a1ec7729f5992367d35 Mon Sep 17 00:00:00 2001 From: civilx64 <26513472+civilx64@users.noreply.github.com> Date: Sat, 7 Dec 2024 10:35:49 -0500 Subject: [PATCH] add missing import for ifcopenshell.api.georeference --- src/ifcopenshell-python/ifcopenshell/util/unit.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ifcopenshell-python/ifcopenshell/util/unit.py b/src/ifcopenshell-python/ifcopenshell/util/unit.py index 5725083139..329ccff281 100644 --- a/src/ifcopenshell-python/ifcopenshell/util/unit.py +++ b/src/ifcopenshell-python/ifcopenshell/util/unit.py @@ -788,6 +788,7 @@ def convert_file_length_units(ifc_file: ifcopenshell.file, target_units: str = " """Converts all units in an IFC file to the specified target units. Returns a new file.""" import ifcopenshell.util.element import ifcopenshell.util.geolocation + import ifcopenshell.api.georeference prefix = get_prefix(target_units) si_unit = get_unit_name(target_units)