Skip to content

Commit 6758d29

Browse files
authored
Merge pull request #243 from samschott/mypy-fixes
Mypy fixes
2 parents 2f1800f + 1df7b5b commit 6758d29

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
os: [ macos-13, macos-latest, ubuntu-latest, windows-2022, windows-latest ]
14+
os: [ macos-14, macos-latest, ubuntu-latest, windows-2022, windows-latest ]
1515
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1616
include:
1717
- pre-command: ""

src/desktop_notifier/backends/macos.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class NotificationCenterDelegate(NSObject): # type:ignore[misc]
8989

9090
implementation: CocoaNotificationCenter
9191

92-
@objc_method # type:ignore[misc]
92+
@objc_method # type:ignore[untyped-decorator]
9393
def userNotificationCenter_didReceiveNotificationResponse_withCompletionHandler_(
9494
self, center: objc_id, response: objc_id, completion_handler: objc_block
9595
) -> None:

0 commit comments

Comments
 (0)