mirror of
https://github.com/nqrduck/LimeDriver.git
synced 2024-11-22 01:52:24 +00:00
Store input args for further processing
Temporarily retain input arguments in a dictionary within the initialization for potential future use, marked with a TODO for deciding on a singular method of parameter storage. This aims to streamline configuration management and facilitate debugging. Further cleanup is needed to consolidate parameter handling.
This commit is contained in:
parent
cd76cb4300
commit
99e20dbf9d
1 changed files with 2 additions and 0 deletions
|
@ -43,6 +43,8 @@ class limr:
|
|||
for key, value in in_arg.items():
|
||||
setattr(self, key, value)
|
||||
|
||||
self.parsinp = in_arg # TODO: *Either* store the parameters in a dict or as attributes, not both
|
||||
|
||||
# initialize other variables
|
||||
self.parvar = {}
|
||||
self.parvar_cpl = {}
|
||||
|
|
Loading…
Reference in a new issue