Skip to content

Commit

Permalink
fix pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ocefpaf committed Sep 21, 2022
1 parent a5ed8ba commit 8fb6101
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions windrose/windrose.py
Expand Up @@ -154,7 +154,7 @@ def set_radii_angle(self, **kwargs):
rmax = self.get_rmax()
if self.rstep is not None:
rstep = self.rstep
N = np.int_(np.ceil(rmax/rstep))
N = np.int_(np.ceil(rmax / rstep))
rmax = N * rstep
else:
N = 5
Expand Down Expand Up @@ -371,7 +371,7 @@ def _init_plot(self, direction, var, **kwargs):
blowto = kwargs.pop("blowto", False)
rstep = kwargs.pop("rstep", None)
self.rstep = rstep

# Calm condition
calm_limit = kwargs.pop("calm_limit", None)
if calm_limit is not None:
Expand Down

0 comments on commit 8fb6101

Please sign in to comment.