Skip to content

Commit

Permalink
Create epics gui path if not exist
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelldls committed Jan 27, 2025
1 parent 904485b commit 79463c8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/fastcs/transport/epics/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ def create_gui(self, options: EpicsGUIOptions | None = None) -> None:
raise FastCSException("FastCS does not support .edl screens.")

assert options.output_path.suffix == options.file_format.value
options.output_path.parent.mkdir(parents=True, exist_ok=True)

controller_mapping = self._controller.get_controller_mappings()[0]
components = self.extract_mapping_components(controller_mapping)
Expand Down

0 comments on commit 79463c8

Please sign in to comment.