potiuk commented on code in PR #29541:
URL: https://github.com/apache/airflow/pull/29541#discussion_r1106272584
##########
airflow/cli/commands/config_command.py:
##########
@@ -38,10 +38,6 @@ def show_config(args):
def get_value(args):
- """Get one value from configuration."""
- if not conf.has_section(args.section):
- raise SystemExit(f"The section [{args.section}] is not found in
config.")
-
if not conf.has_option(args.section, args.option):
Review Comment:
```suggestion
"""Get one value from configuration."""
if not conf.has_option(args.section, args.option):
```
--
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]