From 62df4d67ae9dd9745d751539213964c02757f207 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 2 Dec 2024 19:46:30 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- neuralplayground/arenas/batch_environment.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/neuralplayground/arenas/batch_environment.py b/neuralplayground/arenas/batch_environment.py index 897e1d4..f5a8fc3 100644 --- a/neuralplayground/arenas/batch_environment.py +++ b/neuralplayground/arenas/batch_environment.py @@ -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"]