Skip to content

Commit

Permalink
address #12
Browse files Browse the repository at this point in the history
  • Loading branch information
lucidrains committed Sep 8, 2023
1 parent 3179983 commit d18cddd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions equiformer_pytorch/equiformer_pytorch.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from itertools import product
from collections import namedtuple

from beartype.typing import Optional, Union, Tuple
from beartype.typing import Optional, Union, Tuple, Dict
from beartype import beartype

import torch
Expand Down Expand Up @@ -1001,7 +1001,7 @@ def device(self):
@beartype
def forward(
self,
inputs: Union[Tensor, dict[int, Tensor]],
inputs: Union[Tensor, Dict[int, Tensor]],
coors: Tensor,
mask = None,
adj_mat = None,
Expand Down
2 changes: 1 addition & 1 deletion equiformer_pytorch/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.3.9'
__version__ = '0.3.10'

0 comments on commit d18cddd

Please sign in to comment.