Skip to content

Commit 284c0a8

Browse files
authored
Merge pull request #5 from aidos-lab/feat_url_handling
improvement: split composition of url into two variables
2 parents 65f4da8 + b81dc4e commit 284c0a8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

mantra/simplicial.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@ def __init__(
4848
self.manifold = manifold
4949
root += "/simplicial"
5050
self.version = version
51-
self.url = f"https://github.com/aidos-lab/MANTRADataset/releases/\
52-
{self.version}/download/{self.manifold}_manifolds.json.gz"
51+
self.url = f"https://github.com/aidos-lab/MANTRADataset/releases/{self.version}/download/{self.manifold}_manifolds.json.gz" # noqa
5352
super().__init__(root, transform, pre_transform, pre_filter)
5453
self.load(self.processed_paths[0])
5554

0 commit comments

Comments
 (0)