Skip to content

Commit 92c24cc

Browse files
committed
minor fix
1 parent 51d0d7e commit 92c24cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graph_net/paddle/validate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def main(args):
7272
if isinstance(y, paddle.Tensor):
7373
print(y.shape)
7474
elif isinstance(y, list) or isinstance(y, tuple):
75-
print(y[0].shape if isinstance(y[0], paddle.tensor) else y[0])
75+
print(y[0].shape if isinstance(y[0], paddle.Tensor) else y[0])
7676
else:
7777
raise ValueError("Illegal return value.")
7878

0 commit comments

Comments
 (0)