File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ class FinTSClientMode(Enum):
159
159
class FinTS3Client :
160
160
def __init__ (self ,
161
161
bank_identifier , user_id , customer_id = None ,
162
- from_data : bytes = None ,
162
+ from_data : bytes = None , system_id = None ,
163
163
product_id = None , product_version = version [:5 ],
164
164
mode = FinTSClientMode .INTERACTIVE ):
165
165
self .accounts = []
@@ -169,7 +169,7 @@ def __init__(self,
169
169
self .bank_identifier = BankIdentifier (BankIdentifier .COUNTRY_ALPHA_TO_NUMERIC ['DE' ], bank_identifier )
170
170
else :
171
171
raise TypeError ("bank_identifier must be BankIdentifier or str (BLZ)" )
172
- self .system_id = SYSTEM_ID_UNASSIGNED
172
+ self .system_id = system_id or SYSTEM_ID_UNASSIGNED
173
173
if not product_id :
174
174
raise TypeError ("The product_id keyword argument is mandatory starting with python-fints version 4. See "
175
175
"https://python-fints.readthedocs.io/en/latest/upgrading_3_4.html for more information." )
You can’t perform that action at this time.
0 commit comments