Skip to content

Commit

Permalink
Remove unnecessary imports and arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
flferretti committed Feb 12, 2024
1 parent 360d611 commit ead3fb3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/jaxsim/simulation/integrators.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import enum
from typing import Any, Callable, Dict, Tuple, Union
from typing import Any, Callable, Dict, Tuple

import jax
import jax.numpy as jnp
Expand Down Expand Up @@ -441,7 +441,6 @@ def odeint(
y0: State,
t: TimeHorizon,
*args,
method: str = "euler",
num_sub_steps: int = 1,
return_aux: bool = False,
integrator_type: IntegratorType = None,
Expand Down

0 comments on commit ead3fb3

Please sign in to comment.