Skip to content

Commit

Permalink
tuple->Tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
FNTwin committed Jul 16, 2024
1 parent bf18538 commit 69de4da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openqdc/datasets/structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from abc import ABC, abstractmethod
from os import PathLike
from os.path import join as p_join
from typing import Callable, Dict, List, Optional, Union
from typing import Callable, Dict, List, Optional, Tuple, Union

import numpy as np
import zarr
Expand Down Expand Up @@ -108,7 +108,7 @@ def load_data(
preprocess_path: Union[str, PathLike],
data_keys: List[str],
data_types: Dict[str, np.dtype],
data_shapes: Dict[str, tuple[int, int]],
data_shapes: Dict[str, Tuple[int, int]],
extra_data_keys: List[str],
overwrite: bool,
):
Expand Down

0 comments on commit 69de4da

Please sign in to comment.