Skip to content

Commit

Permalink
Fixing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
williamjsmith15 committed Sep 27, 2023
1 parent f54c718 commit d99599e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bioblend/galaxy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __init__(
email: Optional[str] = None,
password: Optional[str] = None,
verify: bool = True,
session: requests.Session() = None,
session: Optional[requests.Session] = None,
) -> None:
"""
A base representation of a connection to a Galaxy instance, identified
Expand Down
2 changes: 1 addition & 1 deletion bioblend/galaxy/objects/galaxy_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def __init__(
email: Optional[str] = None,
password: Optional[str] = None,
verify: bool = True,
session: requests.Session() = None,
session: Optional[requests.Session] = None,
) -> None:
self.gi = bioblend.galaxy.GalaxyInstance(url, api_key, email, password, verify, session=session)
self.log = bioblend.log
Expand Down
2 changes: 1 addition & 1 deletion bioblend/galaxyclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def __init__(
password: Optional[str] = None,
verify: bool = True,
timeout: Optional[float] = None,
session: requests.Session() = None,
session: Optional[requests.Session] = None,
) -> None:
"""
:param verify: Whether to verify the server's TLS certificate
Expand Down

0 comments on commit d99599e

Please sign in to comment.