Skip to content

Commit

Permalink
Fix missing qt_api in openProject
Browse files Browse the repository at this point in the history
  • Loading branch information
mauritiusdadd committed Apr 10, 2024
1 parent 4c8ea79 commit 63ca73c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/redmost/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -3086,7 +3086,7 @@ def openProject(self, file_name: str) -> None:
'row': int(line_info['row']),
'data': float(line_info['data']),
'text': str(line_info['text']),
'checked': QtCore.Qt.CheckState(
'checked': qt_api.QtCore.Qt.CheckState(
line_info['checked']
)
})
Expand Down

0 comments on commit 63ca73c

Please sign in to comment.