mirror of
https://github.com/ltcptgeneral/cse151b-final-project.git
synced 2024-11-10 07:04:45 +00:00
8 lines
152 B
Python
8 lines
152 B
Python
|
from gym.envs.registration import register
|
||
|
from .wordle import WordleEnv
|
||
|
|
||
|
register(
|
||
|
id='Wordle-v0',
|
||
|
entry_point='gym_wordle.wordle:WordleEnv'
|
||
|
)
|