remove unused type alias

This commit is contained in:
Khalil Meftah
2026-04-21 11:56:27 +02:00
parent 6b93f31238
commit 8191d2d87f

View File

@@ -15,12 +15,10 @@
from __future__ import annotations
import abc
from typing import Any
from lerobot.rl.algorithms.base import BatchType
from lerobot.rl.buffer import ReplayBuffer, concatenate_batch_transitions
BatchType = dict[str, Any]
class DataMixer(abc.ABC):
"""Abstract interface for all data mixing strategies.