mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-03 19:28:25 +02:00
3 lines
No EOL
170 B
Python
3 lines
No EOL
170 B
Python
def load_from_json(self, option_json: dict):
|
|
for key, value in option_json.items(): # load all value in the json as class attribute
|
|
setattr(self, key, value) |