Skip to content

Commit 4587f25

Browse files
committed
black
1 parent 44dc8c5 commit 4587f25

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/sempy_labs/_list_functions.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,11 @@ def list_tables(
240240
"Columns": sum(
241241
1 for c in t.Columns if str(c.Type) != "RowNumber"
242242
),
243-
"% DB": round((total_size / model_size) * 100, 2) if model_size not in (0, None, float('nan')) else 0.0,
243+
"% DB": (
244+
round((total_size / model_size) * 100, 2)
245+
if model_size not in (0, None, float("nan"))
246+
else 0.0
247+
),
244248
}
245249
)
246250

0 commit comments

Comments
 (0)