Skip to content

Commit 648aaa4

Browse files
authored
Merge pull request #2223 from stes/patch-1
Fix typo in type annotations in timm.models.hrnet
2 parents 20fe56b + c01a47c commit 648aaa4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

timm/models/hrnet.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,7 @@ def __init__(
834834
def forward_features(self, x):
835835
assert False, 'Not supported'
836836

837-
def forward(self, x) -> List[torch.tensor]:
837+
def forward(self, x) -> List[torch.Tensor]:
838838
out = []
839839
x = self.conv1(x)
840840
x = self.bn1(x)

0 commit comments

Comments
 (0)