Skip to content

Commit

Permalink
add __all__ for flake8 compliance
Browse files Browse the repository at this point in the history
  • Loading branch information
mlincett committed Oct 20, 2023
1 parent 4759926 commit bedc315
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions skyreader/plot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import logging
from .plot import SkyScanPlotter

LOGGER = logging.getLogger("skyreader.plot")
__all__ = ["SkyScanPlotter"]

from .plot import SkyScanPlotter
LOGGER = logging.getLogger("skyreader.plot")

0 comments on commit bedc315

Please sign in to comment.