Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/fourc_webviewer/fourc_webserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ def sync_design_conditions_sections_from_state(self):
].sections.items():
if section_name.startswith("DESIGN "):
self._server_vars["fourc_yaml_content"].pop(section_name)
self._server_vars["fourc_yaml_content"].add(new_dc_sections)
self._server_vars["fourc_yaml_content"].combine_sections(new_dc_sections)

def init_result_description_state_and_server_vars(self):
"""Initialize the state and server variables for the result description
Expand Down
1 change: 1 addition & 0 deletions src/fourc_webviewer/run_webserver.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Utility to run the webserver on a defined port."""

from fourc_webviewer.fourc_webserver import FourCWebServer
from fourc_webviewer_default_files import (
DEFAULT_INPUT_FILE,
)
Expand Down