Skip to content

Commit

Permalink
lint: tox pass
Browse files Browse the repository at this point in the history
  • Loading branch information
tcp committed Oct 11, 2023
1 parent 663be62 commit 6a50923
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/syft/src/syft/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from .abstract_node import NodeType # noqa: F401
from .client.client import connect # noqa: F401
from .client.client import login # noqa: F401
from .client.client import login_as_guest #noqa: F401
from .client.client import login_as_guest # noqa: F401
from .client.client import register # noqa: F401
from .client.deploy import Orchestra # noqa: F401
from .client.domain_client import DomainClient # noqa: F401
Expand Down
2 changes: 1 addition & 1 deletion packages/syft/src/syft/client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@ def login(
port: Optional[int] = None,
email: Optional[str] = None,
password: Optional[str] = None,
cache: bool = True
cache: bool = True,
) -> SyftClient:
_client = connect(url=url, node=node, port=port)

Expand Down

0 comments on commit 6a50923

Please sign in to comment.