Skip to content

Commit b6b5597

Browse files
Fix the bug (#2875)
1 parent b4dc9f4 commit b6b5597

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ignite/engine/test_create_supervised.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def __init__(self, output_as_list=False):
3333

3434
def forward(self, x):
3535
if self.output_as_list:
36-
return [self.fc(x), self.fc(x)]
36+
return self.fc(x), self.fc(x)
3737

3838
return self.fc(x)
3939

0 commit comments

Comments
 (0)