ephraimbuddy commented on code in PR #44908:
URL: https://github.com/apache/airflow/pull/44908#discussion_r1884374299


##########
airflow/cli/commands/remote_commands/config_command.py:
##########
@@ -64,3 +64,349 @@ def get_value(args):
         print(value)
     except AirflowConfigException:
         pass
+
+
+class ConfigChange:
+    """Class representing the configuration changes in Airflow 3.0."""
+
+    def __init__(
+        self, section: str, option: str, suggestion: str = "", renamed_to: 
tuple[str, str] | None = None
+    ) -> None:
+        """
+        Initialize a RemovedConfig instance.

Review Comment:
   It seems `RemovedConfig` is not in the changes here.



-- 
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]

Reply via email to