From 65a444770102304beb1b0647f683aa9feff5bc70 Mon Sep 17 00:00:00 2001 From: Filipe Fernandes Date: Tue, 30 Jul 2024 11:47:51 +0200 Subject: [PATCH] avoid noqa --- windrose/__init__.py | 56 ++++++++++++++++++++++++++++++-------------- 1 file changed, 38 insertions(+), 18 deletions(-) diff --git a/windrose/__init__.py b/windrose/__init__.py index 048f03b..cd14fe0 100644 --- a/windrose/__init__.py +++ b/windrose/__init__.py @@ -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)