Skip to content

Commit cac51e4

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent 1b736f8 commit cac51e4

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

stdlib/argparse.pyi

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
import sys
2-
from typing import IO, Any, Callable, Generator, Generic, Iterable, NewType, NoReturn, Pattern, Protocol, Sequence, TypeVar, overload
2+
from typing import (
3+
IO,
4+
Any,
5+
Callable,
6+
Generator,
7+
Generic,
8+
Iterable,
9+
NewType,
10+
NoReturn,
11+
Pattern,
12+
Protocol,
13+
Sequence,
14+
TypeVar,
15+
overload,
16+
)
317
from typing_extensions import Literal
418

519
if sys.version_info >= (3, 9):
@@ -53,7 +67,7 @@ ONE_OR_MORE: Literal["+"]
5367
OPTIONAL: Literal["?"]
5468
PARSER: Literal["A..."]
5569
REMAINDER: Literal["..."]
56-
_SUPPRESS_T = NewType('_SUPPRESS_T', str)
70+
_SUPPRESS_T = NewType("_SUPPRESS_T", str)
5771
SUPPRESS: _SUPPRESS_T # not using Literal because argparse sometimes compares SUPPRESS with is
5872
ZERO_OR_MORE: Literal["*"]
5973
_UNRECOGNIZED_ARGS_ATTR: str # undocumented

0 commit comments

Comments
 (0)