We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7c4804 commit 3393647Copy full SHA for 3393647
airflow/providers/microsoft/azure/hooks/cosmos.py
@@ -86,7 +86,7 @@ def get_ui_field_behaviour() -> Dict[str, Any]:
86
def __init__(self, azure_cosmos_conn_id: str = default_conn_name) -> None:
87
super().__init__()
88
self.conn_id = azure_cosmos_conn_id
89
- self._conn = None
+ self._conn: Optional[CosmosClient] = None
90
91
self.default_database_name = None
92
self.default_collection_name = None
0 commit comments