Skip to content

Commit f0935e5

Browse files
committed
Order imports
1 parent 57e4ad3 commit f0935e5

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

pythonwhat/State.py

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
1+
import asttokens
2+
13
from functools import partialmethod
2-
from protowhat.utils import parameters_attr
4+
from collections.abc import Mapping
5+
6+
from protowhat.failure import debugger
37
from protowhat.Feedback import FeedbackComponent
8+
from protowhat.selectors import DispatcherInterface
9+
from protowhat.State import State as ProtoState
10+
from protowhat.utils import parameters_attr
11+
from pythonwhat import signatures
12+
from pythonwhat.converters import get_manual_converters
413
from pythonwhat.feedback import Feedback
514
from pythonwhat.parsing import (
615
TargetVars,
716
FunctionParser,
817
ObjectAccessParser,
918
parser_dict,
1019
)
11-
from protowhat.State import State as ProtoState
12-
from protowhat.selectors import DispatcherInterface
13-
from protowhat.failure import debugger
14-
from pythonwhat import signatures
15-
from pythonwhat.converters import get_manual_converters
16-
from collections.abc import Mapping
17-
import asttokens
1820
from pythonwhat.utils_ast import wrap_in_module
1921

2022

0 commit comments

Comments
 (0)