Skip to content

Commit a573a40

Browse files
authored
Fix a minor merge conflict caused by #19118 (#19246)
1 parent 55c4067 commit a573a40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-data/unit/check-narrowing.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2436,7 +2436,7 @@ y = None
24362436
for x in xs:
24372437
if x is not None:
24382438
if y is None:
2439-
y = {} # E: Need type annotation for "y" (hint: "y: Dict[<type>, <type>] = ...")
2439+
y = {} # E: Need type annotation for "y" (hint: "y: dict[<type>, <type>] = ...")
24402440

24412441
[builtins fixtures/list.pyi]
24422442

0 commit comments

Comments
 (0)