Skip to content

Commit 9a96b74

Browse files
committed
completing the DCO check
Signed-off-by: AvinashYerra <101195675+AvinashYerra@users.noreply.github.com>
1 parent 9315df0 commit 9a96b74

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sqlmesh/magics.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ def wrapper(self: SQLMeshMagics, *args: t.Any, **kwargs: t.Any) -> None:
9696

9797

9898
def parse_expand(value: str) -> t.Union[bool, t.List[str]]:
99-
if value.lower() = "true":
99+
if value.lower() == "true":
100100
return True
101-
if value.lower() = "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)