Skip to content

Commit 2a73d83

Browse files
committed
Fix Linter issues
1 parent 04d0095 commit 2a73d83

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

altair-python/scatter_connected.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@
2020
.encode(
2121
x="Production Budget:Q",
2222
y="Worldwide Gross:Q",
23-
color=(alt.when(brush).then("Major Genre:N").otherwise(alt.value("lightgray"))),
23+
color=(
24+
alt.when(brush)
25+
.then("Major Genre:N")
26+
.otherwise(alt.value("lightgray")),
27+
),
2428
)
2529
.add_params(brush)
2630
)

0 commit comments

Comments
 (0)