Skip to content

Fix LookerHook serialize missing 1 argument error #34678

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Oct 2, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix LookerHook serialize missing 1 argument error
  • Loading branch information
cjonesy committed Sep 28, 2023
commit 7fe71ab49b4cd63e76e13c90a615db80960482e6
2 changes: 1 addition & 1 deletion airflow/providers/google/cloud/hooks/looker.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def get_looker_sdk(self):
return methods40.Looker40SDK(
auth_session.AuthSession(settings, transport, serialize.deserialize40, "4.0"),
serialize.deserialize40,
serialize.serialize,
serialize.serialize40,
transport,
"4.0",
)
Expand Down