ashb commented on a change in pull request #9645:
URL: https://github.com/apache/airflow/pull/9645#discussion_r450715746



##########
File path: airflow/secrets/base_secrets.py
##########
@@ -73,3 +75,12 @@ def get_variable(self, key: str) -> Optional[str]:
         :return: Variable Value
         """
         raise NotImplementedError()
+
+    def get_config(self, key: str) -> Optional[str]:    # pylint: 
disable=unused-argument

Review comment:
       I think this should be
   
   ```suggestion
       def get_config(self, section: str, key: str) -> Optional[str]:    # 
pylint: disable=unused-argument
   ```




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


Reply via email to