Skip to content

Commit c01a47c

Browse files
authored
Fix typo in type annotations in timm.models.hrnet
1 parent 20fe56b commit c01a47c

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)