Skip to content

Commit

Permalink
Add docs, remove pointless __init__
Browse files Browse the repository at this point in the history
  • Loading branch information
mfisherlevine committed Aug 16, 2024
1 parent 820bc62 commit a530e15
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions python/lsst/summit/utils/peekExposure.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
"PeekExposureTask",
]

from typing import Any

from deprecated.sphinx import deprecated

from lsst.pipe.tasks.peekExposure import PeekExposureTask as NewPeekExposureTask
Expand All @@ -39,10 +37,7 @@
category=FutureWarning,
)
class PeekExposureTaskConfig(NewPeekExposureTaskConfig):
"""Config class for the PeekExposureTask."""

def __init__(self, *args: Any, **kwargs: Any):
super().__init__(*args, **kwargs)
"""Redirect to the new class in pipe_tasks."""


@deprecated(
Expand All @@ -51,7 +46,4 @@ def __init__(self, *args: Any, **kwargs: Any):
category=FutureWarning,
)
class PeekExposureTask(NewPeekExposureTask):
""" """

def __init__(self, config: Any, *args: Any, **kwargs: Any):
super().__init__(config=config, *args, **kwargs)
"""Redirect to the new class in pipe_tasks."""

0 comments on commit a530e15

Please sign in to comment.