Skip to content
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

Enhance Airflow Plugin #2099

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion plugins/flytekit-airflow/flytekitplugins/airflow/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def _get_airflow_instance(
return obj_def(**airflow_obj.parameters)


def _is_deferrable(cls: Type):
def _is_deferrable(cls: Type) -> bool:
"""
This function is used to check if the Airflow operator is deferrable.
"""
Expand Down
1 change: 1 addition & 0 deletions plugins/flytekit-airflow/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
plugin_requires = [
"apache-airflow",
"flytekit>=1.9.0",
"flyteidl>=1.10.6",
]

__version__ = "0.0.0+develop"
Expand Down