Skip to content

Commit

Permalink
Relax DictWriter.fieldnames closer to implementation (#5994)
Browse files Browse the repository at this point in the history
Fixes #5993
  • Loading branch information
PeterJCLaw authored Sep 2, 2021
1 parent d5ff0e8 commit 425a353
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions stdlib/csv.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ from _csv import (
unregister_dialect as unregister_dialect,
writer as writer,
)
from typing import Any, Generic, Iterable, Iterator, Mapping, Sequence, Type, TypeVar, overload
from collections.abc import Collection, Iterable, Iterator, Mapping, Sequence
from typing import Any, Generic, Type, TypeVar, overload

if sys.version_info >= (3, 8):
from typing import Dict as _DictReadMapping
Expand Down Expand Up @@ -78,14 +79,14 @@ class DictReader(Generic[_T], Iterator[_DictReadMapping[_T, str]]):
def __next__(self) -> _DictReadMapping[_T, str]: ...

class DictWriter(Generic[_T]):
fieldnames: Sequence[_T]
fieldnames: Collection[_T]
restval: Any | None
extrasaction: str
writer: _writer
def __init__(
self,
f: Any,
fieldnames: Sequence[_T],
fieldnames: Collection[_T],
restval: Any | None = ...,
extrasaction: str = ...,
dialect: _DialectLike = ...,
Expand Down

0 comments on commit 425a353

Please sign in to comment.