Skip to content

Commit

Permalink
added bug fixed for init dt0
Browse files Browse the repository at this point in the history
  • Loading branch information
thibmonsel committed Dec 12, 2023
1 parent f9dae13 commit f506ee5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions diffrax/_integrate.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import typing
import warnings
from collections.abc import Callable
from typing import Any, cast, get_args, get_origin, Optional, Tuple, TYPE_CHECKING
from typing import TYPE_CHECKING, Any, Optional, Tuple, cast, get_args, get_origin

import equinox as eqx
import equinox.internal as eqxi
Expand All @@ -27,7 +27,7 @@
from ._misc import static_select
from ._root_finder import use_stepsize_tol
from ._saveat import SaveAt, SubSaveAt
from ._solution import is_okay, is_successful, RESULTS, Solution
from ._solution import RESULTS, Solution, is_okay, is_successful
from ._solver import (
AbstractImplicitSolver,
AbstractItoSolver,
Expand Down

0 comments on commit f506ee5

Please sign in to comment.