Skip to content

Commit 7cf4530

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 4e24efe commit 7cf4530

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

tests/test_paths.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# 3rd party
2121
import pytest
2222
from coincidence.regressions import AdvancedDataRegressionFixture
23-
from coincidence.selectors import not_pypy, not_windows, only_windows, max_version
23+
from coincidence.selectors import max_version, not_pypy, not_windows, only_windows
2424

2525
# this package
2626
from domdf_python_tools import paths
@@ -925,11 +925,13 @@ def test_sort_paths():
925925

926926

927927
@pytest.mark.parametrize("path", _from_uri_paths)
928-
@pytest.mark.parametrize("left_type", [
929-
pytest.param(pathlib.PurePath, marks=max_version((3, 13))),
930-
pathlib.Path,
931-
PathPlus,
932-
])
928+
@pytest.mark.parametrize(
929+
"left_type", [
930+
pytest.param(pathlib.PurePath, marks=max_version((3, 13))),
931+
pathlib.Path,
932+
PathPlus,
933+
]
934+
)
933935
def test_pathplus_from_uri(path: str, left_type: Type):
934936
assert PathPlus.from_uri(left_type(path).as_uri()).as_posix() == path
935937

0 commit comments

Comments
 (0)