Skip to content

Commit 98b59f8

Browse files
AvinashYerraStuffbyYuki
authored andcommitted
fixed py 3.14 compatibility by adding a new function
1 parent b507536 commit 98b59f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sqlmesh/magics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def wrapper(self: SQLMeshMagics, *args: t.Any, **kwargs: t.Any) -> None:
9898
def parse_expand(value: str) -> t.Union[bool, t.List[str]]:
9999
if value.lower() = "true":
100100
return True
101-
if value.lower() in "false":
101+
if value.lower() = "false":
102102
return False
103103
return [name.strip() for name in value.split(",") if name.strip()]
104104

0 commit comments

Comments
 (0)