Skip to content

Commit

Permalink
better version
Browse files Browse the repository at this point in the history
  • Loading branch information
eacharles committed Jul 19, 2024
1 parent 211ef34 commit 4cad6c3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/rail/stages/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import rail

from rail.core import RailEnv
from rail.core.stage import RailStage

from rail.estimation.estimator import CatEstimator
from rail.estimation.classifier import CatClassifier, PZClassifier
Expand Down Expand Up @@ -78,6 +80,6 @@ def import_and_attach_all():
"""Import all the packages in the rail ecosystem and attach them to this module"""
RailEnv.import_all_packages()
RailEnv.attach_stages(rail.stages)
for xx in dir(rail.stages):
for xx in RailStage.pipeline_stages:
rail.stages.__all__.append(xx)

0 comments on commit 4cad6c3

Please sign in to comment.