Skip to content

Commit

Permalink
forgot
Browse files Browse the repository at this point in the history
  • Loading branch information
UnravelSports [JB] committed Jul 22, 2024
1 parent 65281fe commit 196936d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unravel/utils/objects/custom_spektral_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def __convert(self, data) -> List[Graph]:
return [g.to_spektral_graph() for g in self.data]
elif isinstance(data[0], dict):
return [
SpektralGraph(x=g["x"], a=g["a"], e=g["e"], y=g["y"], id=g["id"])
Graph(x=g["x"], a=g["a"], e=g["e"], y=g["y"], id=g["id"])
for g in data
]
else:
Expand Down

0 comments on commit 196936d

Please sign in to comment.