Commit 094dc393 authored by Olivier Kaufmann's avatar Olivier Kaufmann
Browse files

Attempts to fix property issue in TxAbstract init

Showing with 1 addition and 0 deletions
+1 -0
......@@ -16,6 +16,7 @@ class TxAbstract(ABC):
polarity = kwargs.pop('polarity', 1)
if polarity is None:
polarity = 0
self._polarity = polarity
print(f'polarity: {polarity}') # TODO: delete me
inj_time = kwargs.pop('inj_time', 1.)
self.exec_logger = kwargs.pop('exec_logger', None)
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment