Skip to content

Commit

Permalink
fix: added render mode back in, was commented for some reason
Browse files Browse the repository at this point in the history
  • Loading branch information
glynnchaldecott committed Mar 8, 2024
1 parent 38db2dc commit e2669de
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(name) # , render_mode=render_mode)
self.env = gym.make(id=name, render_mode=render_mode)
self.action_space = self.env.action_space

self.encoder = encoder
Expand Down

0 comments on commit e2669de

Please sign in to comment.