Skip to content

Commit 9252125

Browse files
committed
style: Black and isort
1 parent c1e8882 commit 9252125

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

openapi_python_client/__init__.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@ def __init__(
7373
)
7474
else:
7575
loader = package_loader
76-
self.env: Environment = Environment(loader=loader, trim_blocks=True, lstrip_blocks=True, extensions=['jinja2.ext.loopcontrols'])
76+
self.env: Environment = Environment(
77+
loader=loader, trim_blocks=True, lstrip_blocks=True, extensions=["jinja2.ext.loopcontrols"]
78+
)
7779

7880
self.project_name: str = config.project_name_override or f"{utils.kebab_case(openapi.title).lower()}-client"
7981
self.project_dir: Path = Path.cwd()

openapi_python_client/parser/properties/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
]
1111

1212
from itertools import chain
13-
from typing import Any, ClassVar, Dict, Generic, Iterable, Iterator, List, Optional, Set, Tuple, TypeVar, Union
13+
from typing import Any, ClassVar, Dict, Generic, Iterable, List, Optional, Set, Tuple, TypeVar, Union
1414

1515
import attr
1616

0 commit comments

Comments
 (0)