Skip to content

Commit 4f0bbbc

Browse files
committed
PatchDict typing enhancement
1 parent 10779c3 commit 4f0bbbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ninja/patch_dict.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def __getitem__(self, schema_cls: Any) -> Any:
4848
if TYPE_CHECKING: # pragma: nocover
4949
T = TypeVar("T")
5050

51-
class PatchDict(dict[Any, Any], Generic[T]):
51+
class PatchDict(Dict[Any, Any], Generic[T]):
5252
pass
5353

5454
else:

0 commit comments

Comments
 (0)