moiseenkov commented on code in PR #36974:
URL: https://github.com/apache/airflow/pull/36974#discussion_r1464471409
##########
airflow/providers/google/common/hooks/base_google.py:
##########
@@ -642,8 +642,10 @@ def __init__(
*,
project: str | None = None,
session: ClientSession | None = None,
+ scopes: Sequence[str] | None = None,
) -> None:
- super().__init__(session=cast(Session, session))
+ _scopes: list[str] | None = list(scopes) or None
Review Comment:
Thanks for fixing that! I was intended to do it this morning but you guys
were faster!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]