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


##########
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:
   Changed it. Initially I had named it `RemovedConfig` but later changed it to 
`ConfigChange` as it had rename as well.



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