Skip to content

Commit e03e361

Browse files
committed
chore: style fixes
1 parent 7fb3ac8 commit e03e361

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

_test_contract/test_partition_via_api.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,12 @@ def doc_path() -> Path:
4141
]"""
4242

4343

44-
@pytest.mark.parametrize(("url", "full_url"), [
45-
("http://localhost:8000", "http://localhost:8000/general/v0/general"),
46-
("http://localhost:8000/general/v0/general", "http://localhost:8000/general/v0/general"),
47-
]
48-
)
44+
@pytest.mark.parametrize(
45+
("url", "full_url"), [
46+
("http://localhost:8000", "http://localhost:8000/general/v0/general"),
47+
("http://localhost:8000/general/v0/general", "http://localhost:8000/general/v0/general"),
48+
]
49+
)
4950
def test_partition_via_api_custom_url(httpx_mock, doc_path: Path, url: str, full_url: str):
5051
"""
5152
Assert that we can specify api_url and requests are sent to the right place
@@ -61,8 +62,7 @@ def test_partition_via_api_custom_url(httpx_mock, doc_path: Path, url: str, full
6162
content=MOCK_TEXT.encode(),
6263
)
6364

64-
partition_via_api(filename=str(doc_path/filename), api_url=url, metadata_filename=filename)
65-
65+
partition_via_api(filename=str(doc_path / filename), api_url=url, metadata_filename=filename)
6666

6767

6868
def test_partition_via_api_pass_list_type_parameters(httpx_mock, doc_path: Path):

0 commit comments

Comments
 (0)