mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
10 lines
196 B
Python
10 lines
196 B
Python
class PluginMetaclass(type):
|
|
def getStore(cls):
|
|
pass
|
|
|
|
class Plugin(object):
|
|
__metaclass__ = PluginMetaclass
|
|
|
|
def foo(self):
|
|
Plugin.getStore()
|
|
# <ref> |