gameboy_worlds.interface.harry_potter.environments

1from gameboy_worlds.interface.environment import DummyEnvironment, TestEnvironmentMixin
2
3
4class HarryPotterTestEnvironment(TestEnvironmentMixin, DummyEnvironment):
5    pass
class HarryPotterTestEnvironment(typing.Generic[~ObsType, ~ActType]):
5class HarryPotterTestEnvironment(TestEnvironmentMixin, DummyEnvironment):
6    pass

Mixin class for testing environments. Ensures the State Tracker used is a TestTrackerMixin and checks these for termination / truncation.