Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] authored and Corvince committed Feb 24, 2024
1 parent 52702e2 commit 6cbe17a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mesa/experimental/components/altair.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ def portray(g):
encoding_dict["size"] = alt.Size("size", type="quantitative")

chart = (
alt.Chart(alt.Data(values=all_agent_data), encoding=alt.Encoding(**encoding_dict))
alt.Chart(
alt.Data(values=all_agent_data), encoding=alt.Encoding(**encoding_dict)
)
.mark_point(filled=True)
.properties(width=space.width * 15, height=space.height * 15)
# .configure_view(strokeOpacity=0) # hide grid/chart lines
Expand Down

0 comments on commit 6cbe17a

Please sign in to comment.