From 1df8908689475a67a2fa6f44f4f6ef09040f49a8 Mon Sep 17 00:00:00 2001 From: Vukas Pajic Date: Thu, 4 Aug 2022 10:24:13 +0200 Subject: [PATCH] fix commit mistake --- src/ifcdiff/ifcdiff.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ifcdiff/ifcdiff.py b/src/ifcdiff/ifcdiff.py index 24f9a38900..747234d52d 100755 --- a/src/ifcdiff/ifcdiff.py +++ b/src/ifcdiff/ifcdiff.py @@ -34,7 +34,7 @@ from deepdiff import DeepDiff class IfcDiff: - def __init__(self, old_file, new_file, output_file, relationships=None, is_shallow=True): + def __init__(self, old_file, new_file, output_file, relationships=None, is_shallow=True, filter_elements:None): self.old_file = old_file self.new_file = new_file self.output_file = output_file @@ -43,6 +43,7 @@ class IfcDiff: self.relationships = relationships self.precision = 1e-4 self.is_shallow = is_shallow + self.filter_elements = filter_elements def diff(self): print("# IFC Diff")