fix linting issues in current codebase

This commit is contained in:
Jonathan Wren 2022-10-30 15:35:24 -07:00
parent c58e82dd60
commit 16f6bca2fe
No known key found for this signature in database

View file

@ -1,6 +1,10 @@
# Copyright © 2012-2022 jrnl contributors # Copyright © 2012-2022 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html # License: https://www.gnu.org/licenses/gpl-3.0.html
from jrnl.messages.Message import Message # noqa: F401 from jrnl.messages import Message
from jrnl.messages.MsgStyle import MsgStyle # noqa: F401 from jrnl.messages import MsgStyle
from jrnl.messages.MsgText import MsgText # noqa: F401 from jrnl.messages import MsgText
Message = Message.Message
MsgStyle = MsgStyle.MsgStyle
MsgText = MsgText.MsgText