14 lines
304 B
Python
14 lines
304 B
Python
from typing import Final, Any
|
|
from Base.PyObjectBase import PyObjectBase
|
|
|
|
|
|
class Extension(PyObjectBase):
|
|
"""
|
|
Base class for all extensions
|
|
Author: Stefan Troeger (stefantroeger@gmx.net)
|
|
Licence: LGPL
|
|
"""
|
|
|
|
ExtendedObject: Final[Any] = None
|
|
"""Get extended container object"""
|