Skip to content

Commit bc57ae1

Browse files
committed
Sorted imports
1 parent 6213711 commit bc57ae1

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

.isort.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[settings]
22
line_length = 115
3-
force_to_top = True
43
indent = Tab
54
multi_line_output = 3
65
import_heading_stdlib = stdlib
@@ -27,5 +26,5 @@ known_third_party =
2726
requests
2827
typing_extensions
2928
known_first_party = domdf_python_tools
30-
float_to_top = True
3129
remove_redundant_aliases = True
30+
force_to_top = True

domdf_python_tools/paths.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
import pathlib
4848
import shutil
4949
import stat
50-
from typing import Any, IO, Callable, Optional
50+
from typing import IO, Any, Callable, Optional
5151

5252
# this package
5353
from domdf_python_tools.typing import PathLike

make_conda_recipe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/python3
22

3-
# {{ managed_message }}
3+
# This file is managed by `repo_helper`. Don't edit it directly
44

55
# stdlib
66
import platform

tests/test_typing.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,13 @@
99
# stdlib
1010
import os
1111
import pathlib
12-
13-
# 3rd party
1412
from typing import Dict, List, Sequence, Set, Tuple, Union
1513

14+
# 3rd party
1615
import pytest
1716

1817
# this package
19-
from domdf_python_tools.typing import check_membership, PathLike
18+
from domdf_python_tools.typing import PathLike, check_membership
2019

2120

2221
@pytest.mark.parametrize(

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ changedir = {toxinidir}
108108
deps =
109109
mypy
110110
-r{toxinidir}/tests/requirements.txt
111+
111112
commands = mypy domdf_python_tools tests
112113

113114

0 commit comments

Comments
 (0)