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

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

from ...journal.journal import Journal
from .annotation_impl import AnnotationImpl


[docs] class AnnotationJournal( AnnotationImpl, Journal, init=False, ): pass