Skip to content

Commit

Permalink
avoid noqa
Browse files Browse the repository at this point in the history
  • Loading branch information
ocefpaf committed Jul 30, 2024
1 parent 8cc0578 commit 65a4447
Showing 1 changed file with 38 additions and 18 deletions.
56 changes: 38 additions & 18 deletions windrose/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,44 @@
from matplotlib.projections import register_projection

from .windrose import (
D_KIND_PLOT, # noqa
DEFAULT_THETA_LABELS, # noqa
DPI_DEFAULT, # noqa
FIGSIZE_DEFAULT, # noqa
WindAxes, # noqa
WindAxesFactory, # noqa
WindroseAxes, # noqa
clean, # noqa
clean_df, # noqa
plot_windrose, # noqa
plot_windrose_df, # noqa
plot_windrose_np, # noqa
wrbar, # noqa
wrbox, # noqa
wrcontour, # noqa
wrcontourf, # noqa
wrpdf, # noqa
wrscatter, # noqa
D_KIND_PLOT,
DEFAULT_THETA_LABELS,
DPI_DEFAULT,
FIGSIZE_DEFAULT,
WindAxes,
WindAxesFactory,
WindroseAxes,
clean,
clean_df,
plot_windrose,
plot_windrose_df,
plot_windrose_np,
wrbar,
wrbox,
wrcontour,
wrcontourf,
wrpdf,
wrscatter,
)

__all__ = [
"D_KIND_PLOT",
"DEFAULT_THETA_LABELS",
"DPI_DEFAULT",
"FIGSIZE_DEFAULT",
"WindAxes",
"WindAxesFactory",
"WindroseAxes",
"clean",
"clean_df",
"plot_windrose",
"plot_windrose_df",
"plot_windrose_np",
"wrbar",
"wrbox",
"wrcontour",
"wrcontourf",
"wrpdf",
"wrscatter",
]
register_projection(WindroseAxes)

0 comments on commit 65a4447

Please sign in to comment.