Skip to content

Commit

Permalink
[batch] do not rename Session to BaseSession b/c BaseSession already …
Browse files Browse the repository at this point in the history
…exists (hail-is#13386)
  • Loading branch information
danking authored Aug 7, 2023
1 parent df17d7f commit 1f170c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hail/python/hailtop/aiocloud/aiogoogle/session.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
from typing import Mapping, Optional, Union

from ..common import Session as BaseSession, AnonymousCloudCredentials
from ..common import Session, AnonymousCloudCredentials

from .credentials import GoogleCredentials


class GoogleSession(BaseSession):
class GoogleSession(Session):
def __init__(self, *, credentials: Optional[Union[GoogleCredentials, AnonymousCloudCredentials]] = None, credentials_file: Optional[str] = None,
params: Optional[Mapping[str, str]] = None, **kwargs):
assert credentials is None or credentials_file is None, \
Expand Down

0 comments on commit 1f170c3

Please sign in to comment.