Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 2, 2024
1 parent 2993e06 commit 62df4d6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion neuralplayground/arenas/batch_environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,14 @@ class BatchEnvironment(Environment):
**env_kwargs: dict
Keyword arguments for the environment
"""

def __init__(
self,
environment_name: str = "BatchEnv",
env_class: object = DiscreteObjectEnvironment,
batch_size: int = 1,
**env_kwargs,
):
):
super().__init__(environment_name, **env_kwargs)
self.env_kwargs = env_kwargs.copy()
arg_env_params = env_kwargs["arg_env_params"]
Expand Down

0 comments on commit 62df4d6

Please sign in to comment.