Skip to content

Commit 9e15076

Browse files
authored
Merge pull request #755 from realpython/lpozo-patch-1
Fix tuple issue in scatter_connected.py
2 parents ee5e331 + ab93c04 commit 9e15076

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

altair-python/scatter_connected.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
color=(
2323
alt.when(brush)
2424
.then("Major Genre:N")
25-
.otherwise(alt.value("lightgray")),
25+
.otherwise(alt.value("lightgray"))
2626
),
2727
)
2828
.add_params(brush)

0 commit comments

Comments
 (0)