mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-21 09:08:27 +08:00
Add various missing generic arguments (#7702)
Co-authored-by: Akuli <akuviljanen17@gmail.com>
This commit is contained in:
@@ -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): ...
|
||||
|
||||
Reference in New Issue
Block a user