mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 01:41:11 +07:00
8 lines
228 B
Python
8 lines
228 B
Python
|
|
class MyClass(object):
|
|
def __init__(self):
|
|
self._resetData()
|
|
self._val = []
|
|
|
|
def _resetData(self):
|
|
self._val = [] # This should not be receiving a warning. The function gets called in __init__. |