Skip to content

Commit

Permalink
fixes in import statements
Browse files Browse the repository at this point in the history
  • Loading branch information
m0mosenpai committed Aug 10, 2021
1 parent 4d972e3 commit a2fcab4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/commands/v2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
from . import kill # noqa F401
from . import persistent # noqa F401
from . import profile # noqa F401
from . import pysa_server # noqa F401
from . import query # noqa F401
from . import rage # noqa F401
from . import restart # noqa F401
from . import servers # noqa F401
from . import start # noqa F401
from . import stop # noqa F401
from . import validate_models # noqa F401
from ....client.commands.v2 import pysa_server # noqa F401
5 changes: 3 additions & 2 deletions client/commands/v2/pysa_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
from collections import defaultdict
from typing import List, Sequence, Dict

from ....api import query, connection as api_connection
from ....api.connection import PyreQueryError

from ... import (
json_rpc,
command_arguments,
Expand All @@ -36,8 +39,6 @@
InitializationSuccess,
InitializationFailure,
)
from ....api import query, connection as api_connection
from ....api.connection import PyreQueryError

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

Expand Down
2 changes: 1 addition & 1 deletion client/tests/pyre_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
from .. import (
command_arguments,
configuration,
pyre,
recently_used_configurations,
)
from ...client import pyre
from .setup import (
ensure_directories_exists,
switch_working_directory,
Expand Down

0 comments on commit a2fcab4

Please sign in to comment.