Source code for app.portfolio.models.instrument.instrument_journal

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


from ...journal.journal import Journal
from .instrument_impl import InstrumentImpl


[docs] class InstrumentJournal( InstrumentImpl, Journal, init=False, ): pass