multimodalsim-viewer 0.1.0.0__py3-none-any.whl → 0.1.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -354,7 +354,12 @@ class SimulationVisualizationDataManager: # pylint: disable=too-many-public-met
354
354
  with lock:
355
355
  with open(state_file_path, "r", encoding="utf-8") as file:
356
356
  state = SimulationVisualizationDataManager.get_state_to_send(file)
357
- state["isComplete"] = is_simulation_complete or (index < len(sorted_states) - 1)
357
+
358
+ isComplete = is_simulation_complete or (index < len(sorted_states) - 1)
359
+ if not isComplete:
360
+ has_incomplete_states = True
361
+ state["isComplete"] = isComplete
362
+
358
363
  missing_states.append(state)
359
364
 
360
365
  updates_data = file.readlines()
@@ -12,5 +12,5 @@
12
12
  <script src="scripts/load-environment.script.js" type="module"></script>
13
13
  <body class="mat-typography">
14
14
  <app-root></app-root>
15
- <link rel="modulepreload" href="chunk-BQ2VC5TN.js"><script src="polyfills-FFHMD2TL.js" type="module"></script><script src="main-EAYQBWLP.js" type="module"></script></body>
15
+ <link rel="modulepreload" href="chunk-BQ2VC5TN.js"><script src="polyfills-FFHMD2TL.js" type="module"></script><script src="main-7DV4COXP.js" type="module"></script></body>
16
16
  </html>