dabla commented on code in PR #41327: URL: https://github.com/apache/airflow/pull/41327#discussion_r1778496047
########## airflow/providers/microsoft/mssql/hooks/mssql.py: ########## @@ -22,10 +22,13 @@ from typing import Any import pymssql -from methodtools import lru_cache from pymssql import Connection as PymssqlConnection -from airflow.providers.common.sql.hooks.sql import DbApiHook, fetch_all_handler +from airflow.providers.common.sql.dialects.mssql import MsSqlDialect +from airflow.providers.common.sql.hooks.sql import DbApiHook + +if TYPE_CHECKING: Review Comment: How could I have missed this didn't see it an PyCharm didn't complain about it either, thx again @romsharon98 -- 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]
