Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
ReimarBauer committed Feb 11, 2025
1 parent 8a550be commit fc0bdc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mslib/msui/remotesensing_dockwidget.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def compute_solar_lines(self, bmap, wp_vertices, wp_heights, wp_times, solartype
points[i][0][0], points[i][0][1] = bmap(points[i][0][0], points[i][0][1])
points = np.concatenate([points[:-1], points[1:]], axis=1)
# plot
norm = BoundaryNorm(np.arange(0, 180,5), 256)
norm = BoundaryNorm(np.arange(0, 180, 5), 256)
solar_lines = LineCollection(points, cmap="turbo", norm=norm,
zorder=2, linewidths=3, animated=True)
solar_lines.set_array(np.array(vals))
Expand Down

0 comments on commit fc0bdc2

Please sign in to comment.