Skip to content

Commit

Permalink
facility correctly saved. this refs #84
Browse files Browse the repository at this point in the history
  • Loading branch information
JeanBilheux committed Aug 14, 2024
1 parent 1215b45 commit 240add8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hyperctui/session/session_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def save_from_ui(self):
session_dict[SessionKeys.window_height] = height

instrument = session_dict[SessionKeys.instrument]
instrument = session_dict.get(SessionKeys.facility, 'SNS')
facility = session_dict.get(SessionKeys.facility, 'SNS')
ipts_selected = session_dict[SessionKeys.ipts_selected]
ipts_index_selected = session_dict[SessionKeys.ipts_index_selected]

Expand Down

0 comments on commit 240add8

Please sign in to comment.