Skip to content

Commit

Permalink
Using typing instead of collections.abc. Fixes #1763
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 651186508
Change-Id: I844ec884b802837554b0b60f2414d6bc37f2da14
  • Loading branch information
erikfrey authored and Copybara-Service committed Jul 10, 2024
1 parent 27b9ddd commit c145b79
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions mjx/mujoco/mjx/_src/collision_convex.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@
# ==============================================================================
"""Convex collisions."""

from collections.abc import Callable
import functools
from typing import Tuple, Union
from typing import Callable, Tuple, Union

import jax
from jax import numpy as jp
Expand Down

0 comments on commit c145b79

Please sign in to comment.