Skip to content

Commit

Permalink
Refactor: Remove unnecessary package exports
Browse files Browse the repository at this point in the history
All three are only used by other modules from the same package
  • Loading branch information
tillprochaska committed Dec 8, 2024
1 parent 4189b40 commit efa13e3
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions backend/howtheyvote/pipelines/__init__.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,11 @@
from .common import (
BasePipeline,
DataUnavailableError,
DataUnchangedError,
PipelineError,
PipelineResult,
)
from .common import PipelineResult
from .members import MembersPipeline
from .press import PressPipeline
from .rcv_list import RCVListPipeline
from .sessions import SessionsPipeline

__all__ = [
"BasePipeline",
"PipelineResult",
"PipelineError",
"DataUnavailableError",
"DataUnchangedError",
"RCVListPipeline",
"PressPipeline",
"MembersPipeline",
Expand Down

0 comments on commit efa13e3

Please sign in to comment.