Source code for app.portfolio.models.annotation.annotation_impl

# SPDX-License-Identifier: GPLv3-or-later
# Copyright © 2025 pygaindalf Rui Pinheiro

from abc import ABCMeta
from typing import TYPE_CHECKING

from ....util.helpers.empty_class import empty_class
from ..entity import EntityImpl
from .annotation_schema import AnnotationSchema


[docs] class AnnotationImpl( EntityImpl, AnnotationSchema if TYPE_CHECKING else empty_class(), metaclass=ABCMeta, ): pass