Skip to content

Commit

Permalink
Try changing inheritance order to see if MRO helps
Browse files Browse the repository at this point in the history
  • Loading branch information
pankajkoti committed Jan 30, 2025
1 parent 9fc5112 commit 55acacc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cosmos/operators/gcp_cloud_run_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
)


class DbtGcpCloudRunJobBase(AbstractDbtBase, CloudRunExecuteJobOperator): # type: ignore
class DbtGcpCloudRunJobBase(CloudRunExecuteJobOperator, AbstractDbtBase): # type: ignore
"""
Executes a dbt core cli command in a Cloud Run Job instance with dbt installed in it.
Expand Down

0 comments on commit 55acacc

Please sign in to comment.