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.
mypy
1 parent 13c3859 commit 092cd7bCopy full SHA for 092cd7b
1 file changed
sqlmesh/core/config/connection.py
@@ -1726,7 +1726,7 @@ def handle_datetimeoffset_mssql_python(dto_value: t.Any) -> t.Any:
1726
1727
conn.add_output_converter(-155, handle_datetimeoffset_mssql_python)
1728
1729
- return conn
+ return t.cast(t.Any, conn)
1730
1731
return connect_mssql_python
1732
@@ -1818,7 +1818,7 @@ def handle_datetimeoffset_pyodbc(dto_value: t.Any) -> t.Any:
1818
1819
conn.add_output_converter(-155, handle_datetimeoffset_pyodbc)
1820
1821
1822
1823
return connect_pyodbc
1824
0 commit comments