From ce0fbc04bb944c83b57a5d192f1c85578b08a501 Mon Sep 17 00:00:00 2001 From: Kaxil Naik Date: Tue, 24 Aug 2021 06:30:46 +0100 Subject: [PATCH] Fix missing whitespace in ``apply_default`` deprecation message (#17799) GitOrigin-RevId: 41e3a918f01a4506ea676b0db7856e99fae47528 --- airflow/utils/decorators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow/utils/decorators.py b/airflow/utils/decorators.py index e0b314b13e9..ea5a536a522 100644 --- a/airflow/utils/decorators.py +++ b/airflow/utils/decorators.py @@ -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",