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 authored and GDYendell committed Jan 27, 2025
1 parent eb739b6 commit d051427
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)

Check warning on line 119 in src/fastcs/transport/epics/gui.py

View check run for this annotation

Codecov / codecov/patch

src/fastcs/transport/epics/gui.py#L119

Added line #L119 was not covered by tests

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

0 comments on commit d051427

Please sign in to comment.