Skip to content

Commit e162b8c

Browse files
committed
fixes in import statements
1 parent 52f1b40 commit e162b8c

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

client/commands/v2/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
from . import kill # noqa F401
1010
from . import persistent # noqa F401
1111
from . import profile # noqa F401
12-
from . import pysa_server # noqa F401
1312
from . import query # noqa F401
1413
from . import rage # noqa F401
1514
from . import restart # noqa F401
1615
from . import servers # noqa F401
1716
from . import start # noqa F401
1817
from . import stop # noqa F401
1918
from . import validate_models # noqa F401
19+
from ....client.commands.v2 import pysa_server # noqa F401

client/commands/v2/pysa_server.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
from collections import defaultdict
1616
from typing import List, Sequence, Dict
1717

18+
from ....api import query, connection as api_connection
19+
from ....api.connection import PyreQueryError
20+
1821
from ... import (
1922
json_rpc,
2023
command_arguments,
@@ -36,8 +39,6 @@
3639
InitializationSuccess,
3740
InitializationFailure,
3841
)
39-
from ....api import query, connection as api_connection
40-
from ....api.connection import PyreQueryError
4142

4243
LOG: logging.Logger = logging.getLogger(__name__)
4344

client/tests/pyre_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
command_arguments,
1717
commands,
1818
configuration,
19-
pyre,
2019
recently_used_configurations,
2120
)
21+
from ...client import pyre
2222
from ..exceptions import EnvironmentException
2323
from .setup import (
2424
ensure_directories_exists,

0 commit comments

Comments
 (0)