diff --git a/src/emulator.py b/src/emulator.py index ad7a21a..8aa82eb 100644 --- a/src/emulator.py +++ b/src/emulator.py @@ -277,11 +277,11 @@ def version_model() -> str: try: EMULATOR.start() - VERSION_RUNNING = model + MODEL_RUNNING = model except Exception: # When emulators fails to start, setting it to empty state not to cause issues later EMULATOR = None - VERSION_RUNNING = None + MODEL_RUNNING = None raise log(f"Emulator spawned. PID: {EMULATOR.process.pid}. CMD: {EMULATOR.process.args}") # type: ignore