File size: 302 Bytes
985c397
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# SPDX-License-Identifier: LGPL-2.1-or-later

from __future__ import annotations

from Extension import Extension


class DocumentObjectExtension(Extension):
    """
    Base class for all document object extensions
    Author: Stefan Troeger (stefantroeger@gmx.net)
    Licence: LGPL
    """

    ...