Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
dorisjlee committed Jun 22, 2021
1 parent d9af03e commit 7a8088d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lux/vislib/altair/Choropleth.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ def initialize_chart(self):
points = (
alt.Chart(geo_map)
.mark_geoshape()
.encode(color=f"{str(y_attr.attribute)}:Q",)
.encode(
color=f"{str(y_attr.attribute)}:Q",
)
.transform_lookup(
lookup="id",
from_=alt.LookupData(self.data, str(x_attr.attribute), [str(y_attr.attribute)]),
Expand Down

0 comments on commit 7a8088d

Please sign in to comment.