Skip to content

Commit

Permalink
Fix missing whitespace in apply_default deprecation message (#17799)
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 41e3a918f01a4506ea676b0db7856e99fae47528
  • Loading branch information
kaxil authored and Cloud Composer Team committed Jan 27, 2023
1 parent ffb7b5f commit 9890c63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/utils/decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def apply_defaults(func: T) -> T:
warnings.warn(
"This decorator is deprecated. \n"
"\n"
"In previous versions, all subclasses of BaseOperator must use apply_default decorator for the"
"In previous versions, all subclasses of BaseOperator must use apply_default decorator for the "
"`default_args` feature to work properly.\n"
"\n"
"In current version, it is optional. The decorator is applied automatically using the metaclass.\n",
Expand Down

0 comments on commit 9890c63

Please sign in to comment.