We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a884b2 commit e38d32aCopy full SHA for e38d32a
1 file changed
src/scaffold/conf/__init__.py
@@ -9,6 +9,9 @@ def register_all() -> None:
9
"""Import all scaffold conf modules (triggering store() calls) then flush to hydra's ConfigStore."""
10
from scaffold.conf.scaffold import artifact_manager # noqa: F401
11
from scaffold.conf.scaffold import ctx_manager # noqa: F401
12
+ from scaffold.conf.scaffold import ( # noqa E501 NOTE: This module is deprecated and will be removed in a future release!; noqa: F401
13
+ entrypoint,
14
+ )
15
16
if importlib.util.find_spec("flytekit") is not None:
17
from scaffold.conf.scaffold import flyte_launcher # noqa: F401
0 commit comments