Skip to content

Commit

Permalink
fix a type hint that broke 3.8 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdsharpe committed Jan 30, 2024
1 parent 45ac362 commit 272181d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aerosandbox/numpy/integrate.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ def quad(
full_output: bool = False,
variable_of_integration: _cas.MX = None,
) -> Union[
tuple[float, float],
tuple[float, float, dict]
Tuple[float, float],
Tuple[float, float, dict]
]:
if np.is_casadi_type(func):

Expand Down

0 comments on commit 272181d

Please sign in to comment.