Skip to content

Commit a2fcab4

Browse files
committed
fixes in import statements
1 parent 4d972e3 commit a2fcab4

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
@@ -10,11 +10,11 @@
1010
from . import kill # noqa F401
1111
from . import persistent # noqa F401
1212
from . import profile # noqa F401
13-
from . import pysa_server # noqa F401
1413
from . import query # noqa F401
1514
from . import rage # noqa F401
1615
from . import restart # noqa F401
1716
from . import servers # noqa F401
1817
from . import start # noqa F401
1918
from . import stop # noqa F401
2019
from . import validate_models # noqa F401
20+
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
@@ -13,9 +13,9 @@
1313
from .. import (
1414
command_arguments,
1515
configuration,
16-
pyre,
1716
recently_used_configurations,
1817
)
18+
from ...client import pyre
1919
from .setup import (
2020
ensure_directories_exists,
2121
switch_working_directory,

0 commit comments

Comments
 (0)