Skip to content

Commit

Permalink
run black
Browse files Browse the repository at this point in the history
  • Loading branch information
ocefpaf committed Jun 12, 2023
1 parent 9b2847b commit 5dca5ac
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions windrose/windrose.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,13 @@ def _init_plot(self, direction, var, **kwargs):

# Set the global information dictionary
self._info["dir"], self._info["bins"], self._info["table"] = histogram(
direction, var, bins, nsector, normed, blowto, total,
direction,
var,
bins,
nsector,
normed,
blowto,
total,
)

return bins, nbins, nsector, colors, angles, kwargs
Expand Down Expand Up @@ -529,7 +535,8 @@ def contourf(self, direction, var, **kwargs):
(
self._info["table"],
np.reshape(
self._info["table"][:, 0], (self._info["table"].shape[0], 1),
self._info["table"][:, 0],
(self._info["table"].shape[0], 1),
),
),
)
Expand Down

0 comments on commit 5dca5ac

Please sign in to comment.