Skip to content

Commit 0adf0b7

Browse files
committed
Bump dependencies and checkers
1 parent 9c75e71 commit 0adf0b7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ psutil>=6.0.0 # Python 3.13 support
1212
# PyAutoGUI # See install.ps1
1313
PyWinCtl>=0.0.42 # py.typed
1414
# When needed, dev builds can be found at https://download.qt.io/snapshots/ci/pyside/dev?C=M;O=D
15-
PySide6-Essentials<6.8.1 # Has typing issue with QMessageBox.warning https://bugreports.qt.io/browse/PYSIDE-2939
15+
PySide6-Essentials>=6.8.2 # Fixed typing issue with QMessageBox.warning
1616
scipy>=1.14.1 # Python 3.13 support
1717
tomli-w>=1.1.0 # Typing fixes
1818
typing-extensions>=4.4.0 # @override decorator support

src/hotkeys.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def send_command(autosplit: "AutoSplit", command: CommandStr):
104104
_send_hotkey(autosplit.settings_dict["skip_split_hotkey"])
105105
case "undo":
106106
_send_hotkey(autosplit.settings_dict["undo_split_hotkey"])
107-
case _: # pyright: ignore[reportUnnecessaryComparison]
107+
case _:
108108
raise KeyError(f"{command!r} is not a valid command")
109109

110110

0 commit comments

Comments
 (0)