Add various missing generic arguments (#7702)

Co-authored-by: Akuli <akuviljanen17@gmail.com>
This commit is contained in:
Sebastian Rittau
2022-04-27 14:25:35 +02:00
committed by GitHub
parent ae09e4e866
commit 2d468966f5
9 changed files with 17 additions and 14 deletions

View File

@@ -1,4 +1,4 @@
import collections.abc as _abc
from collections.abc import MutableMapping
from typing import Any
def normalize_locale(name): ...
@@ -13,7 +13,7 @@ class Alias:
def __init__(self, keys) -> None: ...
def resolve(self, data): ...
class LocaleDataDict(_abc.MutableMapping):
class LocaleDataDict(MutableMapping[Any, Any]):
base: Any
def __init__(self, data, base: Any | None = ...) -> None: ...
def __len__(self): ...