mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
fixed PY-8783 Specify return type using annotation: intention seems to do nothing
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
def my_func(p1=1) -> object:
|
||||
return p1
|
||||
|
||||
d = my_func(1)
|
||||
@@ -0,0 +1,4 @@
|
||||
def my_func(p1=1) -> object:
|
||||
return p1
|
||||
|
||||
d = my_func(1)
|
||||
@@ -0,0 +1,4 @@
|
||||
def my_func(p1=1):
|
||||
return p1
|
||||
|
||||
d = my<caret>_func(1)
|
||||
@@ -0,0 +1,4 @@
|
||||
def my<caret>_func(p1=1):
|
||||
return p1
|
||||
|
||||
d = my_func(1)
|
||||
Reference in New Issue
Block a user