Skip to content

Commit e8673e9

Browse files
committed
Ignore pyright error about dict method overloading.
1 parent d4127e5 commit e8673e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

twitchio/ext/commands/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1721,7 +1721,7 @@ def get(self, key: str, default: VT, /) -> VT: ...
17211721
@overload
17221722
def get(self, key: str, default: DT, /) -> VT | DT: ...
17231723

1724-
def get(self, key: str, default: DT = None, /) -> VT | DT:
1724+
def get(self, key: str, default: DT = None, /) -> VT | DT: # type: ignore
17251725
return super().get(key.casefold(), default)
17261726

17271727
@overload

0 commit comments

Comments
 (0)