-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from JungDongwon/master
fixed circular imports
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,5 +5,5 @@ | |
except ImportError: | ||
pass | ||
|
||
from . import envs, replay, run | ||
from .core import * | ||
from . import envs, replay, run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
from . import limiters, selectors | ||
from .adversarial import AdversarialReplay | ||
from .count_based import CountBasedReplay | ||
from .curious_replay import CuriousReplay | ||
from .generic import Generic | ||
from .prioritized_experience_replay import PrioritizedExperienceReplay | ||
from .replays import Uniform | ||
from .reverb import Reverb | ||
from .curious_replay import CuriousReplay | ||
from .adversarial import AdversarialReplay | ||
from .count_based import CountBasedReplay |