Skip to content

Commit

Permalink
chore: add module and __all__ imports
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsteers committed Oct 6, 2024
1 parent d8d23b0 commit f5ef21e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
2 changes: 2 additions & 0 deletions airbyte/destinations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
from airbyte.destinations.base import Destination
from airbyte.destinations.util import (
get_destination,
get_noop_destination,
)


Expand All @@ -87,6 +88,7 @@
"util",
# Methods
"get_destination",
"get_noop_destination",
# Classes
"Destination",
]
6 changes: 6 additions & 0 deletions airbyte/destinations/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,9 @@ def get_noop_destination() -> Destination:
},
docker_image=True,
)


__all__ = [
"get_destination",
"get_noop_destination",
]
6 changes: 5 additions & 1 deletion airbyte/sources/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
get_available_connectors,
get_connector_metadata,
)
from airbyte.sources.util import get_source
from airbyte.sources.util import (
get_benchmark_source,
get_source,
)


__all__ = [
Expand All @@ -19,6 +22,7 @@
"util",
# Factories
"get_source",
"get_benchmark_source",
# Helper Functions
"get_available_connectors",
"get_connector_metadata",
Expand Down
1 change: 1 addition & 0 deletions airbyte/sources/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,4 +165,5 @@ def get_benchmark_source(

__all__ = [
"get_source",
"get_benchmark_source",
]

0 comments on commit f5ef21e

Please sign in to comment.