uranusjr commented on code in PR #34121:
URL: https://github.com/apache/airflow/pull/34121#discussion_r1316774976
##########
airflow/secrets/local_filesystem.py:
##########
@@ -238,7 +238,7 @@ def load_variables(file_path: str) -> dict[str, str]:
if invalid_keys:
raise AirflowException(f'The "{file_path}" file contains multiple
values for keys: {invalid_keys}')
variables = {key: values[0] if isinstance(values, list) else values for
key, values in secrets.items()}
- log.debug("Loaded %d variables: ", len(variables))
+ log.debug("Loaded %d variables:", len(variables))
Review Comment:
```suggestion
log.debug("Loaded %d variables.", len(variables))
```
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]