Skip to content

Commit f506ee5

Browse files
committed
added bug fixed for init dt0
1 parent f9dae13 commit f506ee5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

diffrax/_integrate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import typing
33
import warnings
44
from collections.abc import Callable
5-
from typing import Any, cast, get_args, get_origin, Optional, Tuple, TYPE_CHECKING
5+
from typing import TYPE_CHECKING, Any, Optional, Tuple, cast, get_args, get_origin
66

77
import equinox as eqx
88
import equinox.internal as eqxi
@@ -27,7 +27,7 @@
2727
from ._misc import static_select
2828
from ._root_finder import use_stepsize_tol
2929
from ._saveat import SaveAt, SubSaveAt
30-
from ._solution import is_okay, is_successful, RESULTS, Solution
30+
from ._solution import RESULTS, Solution, is_okay, is_successful
3131
from ._solver import (
3232
AbstractImplicitSolver,
3333
AbstractItoSolver,

0 commit comments

Comments
 (0)