Skip to content

Commit 28b82e2

Browse files
committed
.
1 parent bde3eb7 commit 28b82e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-data/unit/check-tuples.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ a, b = None, None # type: (A, B)
515515
a1, b1 = a, a # type: (A, B) # E: Incompatible types in assignment (expression has type "A", variable has type "B")
516516
a2, b2 = b, b # type: (A, B) # E: Incompatible types in assignment (expression has type "B", variable has type "A")
517517
a3, b3 = a # type: (A, B) # E: "A" object is not iterable
518-
a4, b4 = None # type: (A, B) # E: "None" object is not iterable
518+
a4, b4 = None # type: (A, B) # E: "None" has no attribute "__iter__" (not iterable)
519519
a5, b5 = a, b, a # type: (A, B) # E: Too many values to unpack (2 expected, 3 provided)
520520

521521
ax, bx = a, b # type: (A, B)

0 commit comments

Comments
 (0)