Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deployer using inheritance w/ stubs #2093

Closed
wants to merge 9 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions metaflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,7 @@ class and related decorators.
# Flow spec
from .flowspec import FlowSpec

from .parameters import Parameter, JSONTypeClass

JSONType = JSONTypeClass()
from .parameters import Parameter, JSONTypeClass, JSONType

# data layer
# For historical reasons, we make metaflow.plugins.datatools accessible as
Expand Down Expand Up @@ -149,6 +147,7 @@ class and related decorators.
from .runner.metaflow_runner import Runner
from .runner.nbrun import NBRunner
from .runner.deployer import Deployer
from .runner.deployer import DeployedFlow
from .runner.nbdeploy import NBDeployer

__ext_tl_modules__ = []
Expand Down
Loading
Loading