Skip to content

Commit 5f836b1

Browse files
committed
style: isort all sources
1 parent cdb145b commit 5f836b1

File tree

8 files changed

+9
-12
lines changed

8 files changed

+9
-12
lines changed

graphtik/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@
4242
keyword,
4343
modify,
4444
optional,
45-
token,
4645
sfxed,
4746
sfxed_vararg,
4847
sfxed_varargs,
48+
token,
4949
vararg,
5050
varargs,
5151
vcat,

graphtik/autograph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
# TODO: replace `UNSET` with ...
3939
from .base import UNSET, Operation, asdict, aslist, astuple, func_name
4040
from .fnop import FnOp, reparse_operation_data
41-
from .modifier import is_sfx, keyword, optional, token, sfxed
41+
from .modifier import is_sfx, keyword, optional, sfxed, token
4242

4343
try:
4444
from re import Pattern as RegexPattern

graphtik/fnop.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import textwrap
1515
from collections import abc as cabc
1616
from functools import update_wrapper, wraps
17-
from typing import Any, Callable, Collection, List, Mapping, Sequence, Tuple
17+
from typing import Callable, Collection, List, Mapping, Sequence, Tuple
1818

1919
from boltons.setutils import IndexedSet as iset
2020

@@ -39,14 +39,11 @@
3939
get_keyword,
4040
is_implicit,
4141
is_optional,
42-
is_token,
4342
is_sfx,
4443
is_sfxed,
44+
is_token,
4545
is_vararg,
4646
is_varargs,
47-
jsonp_ize,
48-
modify,
49-
optional,
5047
)
5148

5249
log = logging.getLogger(__name__)

test/test_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
operation,
1818
pipeline,
1919
planning,
20-
token,
2120
sfxed,
21+
token,
2222
vararg,
2323
varargs,
2424
)

test/test_combine.py

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

99
import pytest
1010

11-
from graphtik import compose, operation, token, sfxed, vararg
11+
from graphtik import compose, operation, sfxed, token, vararg
1212
from graphtik.fnop import Operation
1313
from graphtik.modifier import dep_renamed
1414

test/test_graphtik.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
operation,
1818
optional,
1919
planning,
20-
token,
2120
sfxed,
21+
token,
2222
vararg,
2323
varargs,
2424
)

test/test_modifier.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
keyword,
2121
modify,
2222
optional,
23-
token,
2423
sfxed,
2524
sfxed_vararg,
2625
sfxed_varargs,
26+
token,
2727
vararg,
2828
varargs,
2929
)

test/test_sideffects.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
implicit,
1919
modify,
2020
operation,
21-
token,
2221
sfxed,
22+
token,
2323
)
2424
from graphtik.config import get_execution_pool, is_marshal_tasks
2525
from graphtik.pipeline import Pipeline

0 commit comments

Comments
 (0)