Skip to content

Commit 5cc30ab

Browse files
committed
mypy
1 parent f40fc4d commit 5cc30ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sqlmesh/core/config/connection.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1601,9 +1601,9 @@ class FabricConnectionConfig(MSSQLConnectionConfig):
16011601
"""
16021602

16031603
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
1604+
DIALECT: t.ClassVar[t.Literal["fabric"]] = "fabric" # type: ignore
1605+
DISPLAY_NAME: t.ClassVar[t.Literal["Fabric"]] = "Fabric" # type: ignore
1606+
DISPLAY_ORDER: t.ClassVar[t.Literal[17]] = 17 # type: ignore
16071607
driver: t.Literal["pyodbc"] = "pyodbc"
16081608
autocommit: t.Optional[bool] = True
16091609

0 commit comments

Comments
 (0)