mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 04:45:04 +07:00
- fix missing return type when last statement is a return statement - add/adjust tests - add missing null annotations GitOrigin-RevId: 1208d9192b44ac5deed09be99f206d0c4027d47a
5 lines
112 B
Python
5 lines
112 B
Python
class C:
|
|
def do(self, param: int) -> int:
|
|
<selection>val = param * 2
|
|
return val</selection>
|