diff --git a/gym/envs/classic_control/acrobot.py b/gym/envs/classic_control/acrobot.py index 0d0653b4396..17e26d67d83 100644 --- a/gym/envs/classic_control/acrobot.py +++ b/gym/envs/classic_control/acrobot.py @@ -291,7 +291,7 @@ def derivs(x): yout = rk4(derivs6, y0, t) If you have access to scipy, you should probably be using the - scipy.integrate tools rather than this function. + scipy.integrate tools rather than this function. This would then require re-adding the time variable to the signature of derivs. Returns: