mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-03 19:28:25 +02:00
7 lines
No EOL
249 B
Python
7 lines
No EOL
249 B
Python
def edit(self, option, value, need_restart=False, gui=None):
|
|
if type(value) in [str, int, bool]:
|
|
setattr(self, option, value)
|
|
else:
|
|
setattr(self, option, value.get())
|
|
self.save_to_file()
|
|
if need_restart: gui.restart() |