File "/opt/venv/lib/python3.11/site-packages/tariochbctools/importers/transferwise/importer.py", line 129, in extract
if not self.profileId:
^^^^^^^^^^^^^^
AttributeError: 'Importer' object has no attribute 'profileId'
)
i think you want something like
if not getattr(self, 'profileId', None):
instead, if you want to execute the code that looks up the profiles?