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 f40fc4d commit 5cc30abCopy full SHA for 5cc30ab
sqlmesh/core/config/connection.py
@@ -1601,9 +1601,9 @@ class FabricConnectionConfig(MSSQLConnectionConfig):
1601
"""
1602
1603
type_: t.Literal["fabric"] = Field(alias="type", default="fabric") # type: ignore
1604
- DIALECT: t.ClassVar[t.Literal["fabric"]] = "fabric"
1605
- DISPLAY_NAME: t.ClassVar[t.Literal["Fabric"]] = "Fabric"
1606
- DISPLAY_ORDER: t.ClassVar[t.Literal[17]] = 17
+ DIALECT: t.ClassVar[t.Literal["fabric"]] = "fabric" # type: ignore
+ DISPLAY_NAME: t.ClassVar[t.Literal["Fabric"]] = "Fabric" # type: ignore
+ DISPLAY_ORDER: t.ClassVar[t.Literal[17]] = 17 # type: ignore
1607
driver: t.Literal["pyodbc"] = "pyodbc"
1608
autocommit: t.Optional[bool] = True
1609
0 commit comments