Skip to content

Commit

Permalink
fix override import
Browse files Browse the repository at this point in the history
  • Loading branch information
younik committed Jan 31, 2025
1 parent 4306ed7 commit 7d8cc14
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/jaxsim/api/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
import dataclasses
import functools
from collections.abc import Sequence
from typing import override

try:
from typing import override
except ImportError:
from typing_extensions import override

import jax
import jax.numpy as jnp
Expand Down

0 comments on commit 7d8cc14

Please sign in to comment.