Skip to content

Commit

Permalink
Resolve more merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
jwortmann committed Apr 25, 2024
1 parent 18cbbf4 commit ea58461
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/core/sessions.py
Original file line number Diff line number Diff line change
Expand Up @@ -1857,7 +1857,7 @@ def _get_view_state_actions(self, uri: DocumentUri, auto_save: str) -> int:
actions |= ViewStateActions.Save
return actions

def _set_view_state(self, actions: int, view: Optional[sublime.View]) -> None:
def _set_view_state(self, actions: int, view: sublime.View | None) -> None:
if not view:
return
should_save = bool(actions & ViewStateActions.Save)
Expand Down

0 comments on commit ea58461

Please sign in to comment.