Skip to content

Commit

Permalink
Merge pull request #2223 from stes/patch-1
Browse files Browse the repository at this point in the history
Fix typo in type annotations in timm.models.hrnet
  • Loading branch information
rwightman authored Jul 8, 2024
2 parents 20fe56b + c01a47c commit 648aaa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion timm/models/hrnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@ def __init__(
def forward_features(self, x):
assert False, 'Not supported'

def forward(self, x) -> List[torch.tensor]:
def forward(self, x) -> List[torch.Tensor]:
out = []
x = self.conv1(x)
x = self.bn1(x)
Expand Down

0 comments on commit 648aaa4

Please sign in to comment.