Skip to content

Commit

Permalink
fix the json field
Browse files Browse the repository at this point in the history
  • Loading branch information
goldmedal committed Oct 31, 2024
1 parent 2cff1dd commit 06f641a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibis-server/tools/mdl_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
for model in mdl["models"]:
for column in model["columns"]:
# ignore hidden columns
if column.get("is_hidden"):
if column.get("isHidden"):
continue
sql = f"select \"{column['name']}\" from \"{model['name']}\""
try:
Expand Down

0 comments on commit 06f641a

Please sign in to comment.