Ifc2Sql - hide IFC output argument as there's already database argument #6227

Also handle directory paths more gracefully.
This commit is contained in:
Andrej730
2025-02-27 18:16:23 +05:00
parent 0bd608b6cb
commit 9055f14bb9
2 changed files with 57 additions and 40 deletions
+4 -1
View File
@@ -46,7 +46,10 @@ class Patch(bonsai.core.tool.Patch):
@classmethod
def does_patch_has_output(cls, recipe: str) -> bool:
return recipe != "SplitByBuildingStorey"
return recipe not in (
"Ifc2Sql",
"SplitByBuildingStorey",
)
@classmethod
def post_process_patch_arguments(cls, recipe: str, args: list[Any]) -> list[Any]: