diff options
Diffstat (limited to 'resources/tools/presentation/new/jumpavg/AbstractGroupMetadata.py')
-rw-r--r-- | resources/tools/presentation/new/jumpavg/AbstractGroupMetadata.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/resources/tools/presentation/new/jumpavg/AbstractGroupMetadata.py b/resources/tools/presentation/new/jumpavg/AbstractGroupMetadata.py index 6084db5a1a..3235dbd485 100644 --- a/resources/tools/presentation/new/jumpavg/AbstractGroupMetadata.py +++ b/resources/tools/presentation/new/jumpavg/AbstractGroupMetadata.py @@ -11,10 +11,15 @@ # See the License for the specific language governing permissions and # limitations under the License. +"""Module holding AbstractGroupMetadata class.""" + from abc import ABCMeta, abstractmethod class AbstractGroupMetadata(object): + """Abstract classdefining API for metadata. + + At this level, only __str__() and __repr() methods are required.""" __metaclass__ = ABCMeta |