Skip to content
Snippets Groups Projects
Commit e5d83cf7 authored by pswain's avatar pswain
Browse files

made background subtraction a separate function in extractor

parent 38521cfe
No related branches found
No related tags found
No related merge requests found
...@@ -118,7 +118,7 @@ class ParametersABC(ABC): ...@@ -118,7 +118,7 @@ class ParametersABC(ABC):
assert name not in ( assert name not in (
"parameters", "parameters",
"params", "params",
), "Attribute can't be named params or parameters" ), "Attribute cannot be named params or parameters."
if name in self.__dict__: if name in self.__dict__:
if check_type_recursive(getattr(self, name), new_value): if check_type_recursive(getattr(self, name), new_value):
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment