mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-25 17:57:02 +00:00
file.good - document return type
This commit is contained in:
@@ -926,7 +926,7 @@ class file(file_mixin):
|
|||||||
...
|
...
|
||||||
|
|
||||||
def get_total_inverses(self, *args: entity_instance | int) -> int: ...
|
def get_total_inverses(self, *args: entity_instance | int) -> int: ...
|
||||||
def good(self): ...
|
def good(self) -> file_open_status: ...
|
||||||
@property
|
@property
|
||||||
def header(self) -> spf_header: ...
|
def header(self) -> spf_header: ...
|
||||||
def ifcroot_type(self) -> entity: ...
|
def ifcroot_type(self) -> entity: ...
|
||||||
@@ -960,8 +960,9 @@ class file_open_status:
|
|||||||
UNSUPPORTED_SCHEMA: int
|
UNSUPPORTED_SCHEMA: int
|
||||||
INVALID_SYNTAX: int
|
INVALID_SYNTAX: int
|
||||||
UNKNOWN: int
|
UNKNOWN: int
|
||||||
|
"""Only set on a file created via ``create_uninitialized()`` that hasn't had ``initialize()`` called yet."""
|
||||||
def __init__(self, *args): ...
|
def __init__(self, *args): ...
|
||||||
def value(self): ...
|
def value(self) -> int: ...
|
||||||
|
|
||||||
class fn_evaluator:
|
class fn_evaluator:
|
||||||
def __init__(self, *args, **kwargs): ...
|
def __init__(self, *args, **kwargs): ...
|
||||||
|
|||||||
Reference in New Issue
Block a user