Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Type Hints] datasets.ModelNet #5701

Merged
merged 10 commits into from
Oct 15, 2022
Prev Previous commit
Update torch_geometric/datasets/modelnet.py
  • Loading branch information
rusty1s authored Oct 15, 2022
commit 301c9ccb1a9c7e73f638d357d3e37127b459f90c
4 changes: 2 additions & 2 deletions torch_geometric/datasets/modelnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ class ModelNet(InMemoryDataset):
def __init__(
self,
root: str,
name: Optional[str] = '10',
train: Optional[bool] = True,
name: str = '10',
train: bool = True,
transform: Optional[Callable] = None,
pre_transform: Optional[Callable] = None,
pre_filter: Optional[Callable] = None,
Expand Down