mik-laj commented on a change in pull request #15582:
URL: https://github.com/apache/airflow/pull/15582#discussion_r623146456
##########
File path: airflow/utils/helpers.py
##########
@@ -31,10 +31,17 @@
from airflow.exceptions import AirflowException
from airflow.utils.module_loading import import_string
+if TYPE_CHECKING:
+ from airflow.models import TaskInstance
+
KEY_REGEX = re.compile(r'^[\w.-]+$')
+CAMELCASE_TO_SNAKE_CASE_REGEX = re.compile('(?!^)([A-Z]+)')
Review comment:
```suggestion
CAMELCASE_TO_SNAKE_CASE_REGEX = re.compile(r'(?!^)([A-Z]+)')
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]