fix error in typing

This commit is contained in:
Andrej730
2024-03-08 16:40:30 +05:00
parent b015647543
commit 3d5d868812
+1 -1
View File
@@ -595,7 +595,7 @@ class file(object):
return
@staticmethod
def from_string(s: str) -> ifcopenshell.entity_instance:
def from_string(s: str) -> file:
return file(ifcopenshell_wrapper.read(s))
@staticmethod