mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-12 09:28:31 +02:00
fix linting issues in current codebase
This commit is contained in:
parent
c58e82dd60
commit
16f6bca2fe
1 changed files with 7 additions and 3 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue