mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
Protected member should not be highlighted as a warning if it resolves to .pyi file. We assume that everything in .pyi file is a public API. GitOrigin-RevId: c8275f3e48e3cd69b1676de9b78606f28ea224c8
5 lines
116 B
Python
5 lines
116 B
Python
class MyClass:
|
|
def __init__(self):
|
|
self._public_api = "abacaba"
|
|
self._not_public_api = "qwerty"
|