mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
PY-58374 Fix dict keys completion when editing an existing key
GitOrigin-RevId: 41434300f6ea0f776a115a869fb9578a84015471
This commit is contained in:
committed by
intellij-monorepo-bot
parent
42820a0311
commit
f3da5e58ae
@@ -0,0 +1,10 @@
|
||||
from typing import TypedDict
|
||||
|
||||
|
||||
class Point(TypedDict):
|
||||
coordinateX: int
|
||||
coordinateY: int
|
||||
coordinateZ: int
|
||||
|
||||
|
||||
p: Point = {'coo<caret>': 42, 'coordinateY': 42}
|
||||
Reference in New Issue
Block a user