Skip to content

Commit

Permalink
change import order in init since dynamo relies on init order to work
Browse files Browse the repository at this point in the history
  • Loading branch information
chansigit committed Jul 4, 2024
1 parent 84d956b commit d2b8c53
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion dynamo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,19 @@
#
# __version__ = get_dynamo_version()

from . import configuration, est, ext, mv, pd, pl, pp, sample_data, shiny, sim, tl, vf
from . import pp
from . import est
from . import tl
from . import vf
from . import pd
from . import pl
from . import mv
from . import shiny
from . import sim
from . import sample_data
from . import configuration
from . import ext

from .data_io import *
from .dynamo_logger import (
Logger,
Expand Down

0 comments on commit d2b8c53

Please sign in to comment.