Skip to content

Commit 24536ae

Browse files
dablakaxil
andauthored
Update providers/common/compat/src/airflow/providers/common/compat/standard/operators.py
Co-authored-by: Kaxil Naik <[email protected]>
1 parent 92eccb3 commit 24536ae

File tree

1 file changed

+1
-1
lines changed
  • providers/common/compat/src/airflow/providers/common/compat/standard

1 file changed

+1
-1
lines changed

providers/common/compat/src/airflow/providers/common/compat/standard/operators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
from airflow.models import BaseOperator
5959
from airflow.models.mappedoperator import OperatorPartial
6060

61-
def unwrap_partial(fn):
61+
def unwrap_partial(fn: Callable) -> Callable:
6262
while isinstance(fn, partial):
6363
fn = fn.func
6464
return fn

0 commit comments

Comments
 (0)