Skip to content

Commit

Permalink
Reflect change of file location in code
Browse files Browse the repository at this point in the history
  • Loading branch information
nvbln committed Feb 28, 2024
1 parent 5be2d92 commit 1529f8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sashimi/gui/save_settings_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self, st: State):
self.setLayout(QVBoxLayout())

parent_dir = (Path(__file__).parents[2]).resolve()
with open(parent_dir / "lightsheet_procedure.md") as f:
with open(parent_dir / "notebooks" / "lightsheet_procedure.md") as f:
instructions = f.read()
self.html_markdown = markdown.markdown(instructions)
self.instructions = QTextEdit(self.html_markdown)
Expand Down

0 comments on commit 1529f8c

Please sign in to comment.