Skip to content

Commit

Permalink
fix: removed env_id from make statement, as nolonger supported
Browse files Browse the repository at this point in the history
  • Loading branch information
glynnchaldecott committed Mar 8, 2024
1 parent 60c8497 commit 38db2dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindsnet/environment/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def __init__(
2D inputs.
"""
self.name = name
self.env = gym.make(env_id=name) # , render_mode=render_mode)
self.env = gym.make(name) # , render_mode=render_mode)
self.action_space = self.env.action_space

self.encoder = encoder
Expand Down

0 comments on commit 38db2dc

Please sign in to comment.