Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
xnuohz committed Nov 1, 2024
1 parent 04f9e25 commit 6492e1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion torch_geometric/datasets/git_mol_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def process(self) -> None:

edges_list = []
edge_features_list = []
for bond in mol.GetBonds():
for bond in mol.GetBonds(): # type: ignore
i, j = bond.GetBeginAtomIdx(), bond.GetEndAtomIdx()
edge_feature = [
safe_index(
Expand Down

0 comments on commit 6492e1f

Please sign in to comment.