mirror of https://github.com/jab/bidict.git
Upgrade to latest pyright (1.1.251 from 1.1.246)
This commit is contained in:
parent
333e2e19d3
commit
f31a6f88f3
|
@ -410,10 +410,12 @@ class BidictBase(BidirectionalMapping[KT, VT]):
|
|||
] if save_unwrite else []
|
||||
return write, unwrite
|
||||
|
||||
__NO_KW: t.Mapping[str, t.Any] = MappingProxyType({})
|
||||
|
||||
def _update(
|
||||
self,
|
||||
arg: MapOrIterItems[KT, VT],
|
||||
kw: t.Mapping[str, VT] = MappingProxyType({}),
|
||||
kw: t.Mapping[str, VT] = __NO_KW,
|
||||
*,
|
||||
rbof: t.Optional[bool] = None,
|
||||
on_dup: t.Optional[OnDup] = None,
|
||||
|
|
|
@ -51,7 +51,7 @@ pylint==2.14.0
|
|||
# via -r requirements/lint.in
|
||||
pyparsing==3.0.9
|
||||
# via packaging
|
||||
pyright==1.1.246
|
||||
pyright==1.1.251
|
||||
# via -r requirements/lint.in
|
||||
pytest==7.1.2
|
||||
# via -r requirements/lint.in
|
||||
|
|
Loading…
Reference in New Issue