ashb commented on code in PR #23105:
URL: https://github.com/apache/airflow/pull/23105#discussion_r853800009
##########
airflow/models/connection.py:
##########
@@ -278,16 +287,10 @@ def password(cls):
"""Password. The value is decrypted/encrypted when reading/setting the
value."""
return synonym('_password', descriptor=property(cls.get_password,
cls.set_password))
- def get_extra(self) -> Dict:
+ def get_extra(self) -> Optional[str]:
Review Comment:
```suggestion
def get_extra(self) -> Optional[Dict]:
```
I think?
--
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]