mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-21 12:43:43 +00:00
typing
This commit is contained in:
@@ -456,7 +456,15 @@ class IfcCsv:
|
||||
self.import_pd(ifc_file, df, attributes, null, empty, bool_true, bool_false)
|
||||
|
||||
def import_pd(
|
||||
self, ifc_file, df, attributes=None, null="-", empty="", bool_true="YES", bool_false="NO", concat=", "
|
||||
self,
|
||||
ifc_file: ifcopenshell.file,
|
||||
df: "pd.DataFrame",
|
||||
attributes: Optional[list[Union[str, None]]] = None,
|
||||
null: str = "-",
|
||||
empty: str = "",
|
||||
bool_true: str = "YES",
|
||||
bool_false: str = "NO",
|
||||
concat: str = ", ",
|
||||
) -> None:
|
||||
headers = df.columns.tolist()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user