Skip to content

Commit

Permalink
Revert ignore comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminrwilson committed Dec 11, 2023
1 parent 85ae883 commit 9f350ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/av2/torch/data_loaders/detection.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@


@dataclass
class DetectionDataLoader(Dataset[Sweep]):
class DetectionDataLoader(Dataset[Sweep]): # type: ignore
"""PyTorch data-loader for the sensor dataset.
The sensor dataset should exist somewhere such as `~/data/datasets/{dataset_name}/{dataset_type}/{split_name}`,
Expand Down
2 changes: 1 addition & 1 deletion src/av2/torch/data_loaders/scene_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


@dataclass
class SceneFlowDataloader(Dataset[Tuple[Sweep, Sweep, Se3, Optional[Flow]]]):
class SceneFlowDataloader(Dataset[Tuple[Sweep, Sweep, Se3, Optional[Flow]]]): # type: ignore
"""PyTorch data-loader for the sensor dataset.
Args:
Expand Down

0 comments on commit 9f350ca

Please sign in to comment.