Skip to content

Commit

Permalink
Fix DMv2 circular imports due to pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gaodechen committed Sep 18, 2024
1 parent 5b28b7f commit fa91aa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dreamerv2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
except ImportError:
pass

from . import embodied, envs, replay, run
from .core import *
from . import embodied, envs, replay, run

__all__ = [k for k, v in list(locals().items()) if type(v).__name__ in ("type", "function") and not k.startswith("_")]

0 comments on commit fa91aa0

Please sign in to comment.