Skip to content

Commit

Permalink
Fix flake8 error
Browse files Browse the repository at this point in the history
  • Loading branch information
mharris-dstl committed Jan 24, 2024
1 parent df93bab commit 6e8eadb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion stonesoup/plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,8 @@ def __init__(self, dimension=Dimension.TWO, **kwargs):
if go is None:
raise RuntimeError("Usage of Plotterly plotter requires installation of `plotly`")

self.dimension = Dimension(dimension) # allows 2, 3, Dimension(2), Dimension(3)
self.dimension = Dimension(dimension) # allows 1, 2, 3,
# Dimension(1), Dimension(2) or Dimension(3)

from plotly import colors
layout_kwargs = dict(
Expand Down

0 comments on commit 6e8eadb

Please sign in to comment.