Skip to content

Commit 6a22c20

Browse files
authored
commit 16
1 parent 5b73d71 commit 6a22c20

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

stdlib/decimal.pyi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@ class Context:
189189
Emax: int
190190
capitals: int
191191
clamp: int
192-
traps: dict[_TrapType, bool]
193-
flags: dict[_TrapType, bool]
192+
traps: dict[_TrapType, bool] # type: ignore[type-var]
193+
flags: dict[_TrapType, bool] # type: ignore[type-var]
194194
def __init__(
195195
self,
196196
prec: int | None = None,
@@ -199,8 +199,8 @@ class Context:
199199
Emax: int | None = None,
200200
capitals: int | None = None,
201201
clamp: int | None = None,
202-
flags: dict[_TrapType, bool] | Container[_TrapType] | None = None,
203-
traps: dict[_TrapType, bool] | Container[_TrapType] | None = None,
202+
flags: dict[_TrapType, bool] | Container[_TrapType] | None = None, # type: ignore[type-var]
203+
traps: dict[_TrapType, bool] | Container[_TrapType] | None = None, # type: ignore[type-var]
204204
) -> None: ...
205205
def __reduce__(self) -> tuple[type[Self], tuple[Any, ...]]: ...
206206
def clear_flags(self) -> None: ...

0 commit comments

Comments
 (0)