Skip to content

Commit

Permalink
move logger
Browse files Browse the repository at this point in the history
  • Loading branch information
mlincett committed Oct 20, 2023
1 parent bedc315 commit e966b70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions skyreader/plot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,3 @@
from .plot import SkyScanPlotter

__all__ = ["SkyScanPlotter"]

LOGGER = logging.getLogger("skyreader.plot")
4 changes: 2 additions & 2 deletions skyreader/plot/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@
from matplotlib import pyplot as plt
from matplotlib import text

from . import LOGGER

from .plotting_tools import (
AstroMollweideAxes,
DecFormatter,
Expand All @@ -36,6 +34,8 @@
from ..event_metadata import EventMetadata
from ..result import SkyScanResult

LOGGER = logging.getLogger("skyreader.plot")

class SkyScanPlotter:
PLOT_SIZE_Y_IN: float = 3.85
PLOT_SIZE_X_IN: float = 6
Expand Down

0 comments on commit e966b70

Please sign in to comment.