Skip to content

Commit

Permalink
Fix URL typo in PCMQ4Mv2 dataset (#8222)
Browse files Browse the repository at this point in the history
In the `download()` method is a typo: `self.url_2d` should be named
`self.url`
  • Loading branch information
pbielak authored Oct 19, 2023
1 parent 71a7fee commit 62a2d63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion torch_geometric/datasets/pcqm4m.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def raw_file_names(self) -> List[str]:
]

def download(self):
path = download_url(self.url_2d, self.raw_dir)
path = download_url(self.url, self.raw_dir)
extract_zip(path, self.raw_dir)
os.unlink(path)

Expand Down

0 comments on commit 62a2d63

Please sign in to comment.