Skip to content

Commit 22c344f

Browse files
committed
style: Update black (again) and run post merge
1 parent 1d3d31a commit 22c344f

File tree

4 files changed

+44
-44
lines changed

4 files changed

+44
-44
lines changed

end_to_end_tests/golden-record/my_test_api_client/api/tests/test_inline_objects.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def sync(
6868
client: Client,
6969
json_body: TestInlineObjectsJsonBody,
7070
) -> Optional[TestInlineObjectsResponse200]:
71-
""" """
71+
""" """
7272

7373
return sync_detailed(
7474
client=client,
@@ -97,7 +97,7 @@ async def asyncio(
9797
client: Client,
9898
json_body: TestInlineObjectsJsonBody,
9999
) -> Optional[TestInlineObjectsResponse200]:
100-
""" """
100+
""" """
101101

102102
return (
103103
await asyncio_detailed(

end_to_end_tests/golden-record/my_test_api_client/models/test_inline_objects_response_200.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
@attr.s(auto_attribs=True)
1111
class TestInlineObjectsResponse200:
12-
""" """
12+
""" """
1313

1414
a_property: Union[Unset, str] = UNSET
1515

openapi_python_client/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77

88

99
def sanitize(value: str) -> str:
10-
""" Removes every character that isn't 0-9, A-Z, a-z, or a known delimiter """
10+
"""Removes every character that isn't 0-9, A-Z, a-z, or a known delimiter"""
1111
return re.sub(rf"[^\w{delimiters}]+", "", value)
1212

1313

1414
def split_words(value: str) -> List[str]:
15-
""" Split a string on non-capital letters and known delimiters """
15+
"""Split a string on non-capital letters and known delimiters"""
1616
value = " ".join(re.split("([A-Z]?[a-z]+)", value))
1717
return re.findall(rf"[^{delimiters}]+", value)
1818

poetry.lock

Lines changed: 39 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)