From 16f6bca2fe8ba2bd8724a167f9e0ed660c8e7441 Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Sun, 30 Oct 2022 15:35:24 -0700 Subject: [PATCH] fix linting issues in current codebase --- jrnl/messages/__init__.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/jrnl/messages/__init__.py b/jrnl/messages/__init__.py index 602267e6..6bdd9a11 100644 --- a/jrnl/messages/__init__.py +++ b/jrnl/messages/__init__.py @@ -1,6 +1,10 @@ # Copyright © 2012-2022 jrnl contributors # License: https://www.gnu.org/licenses/gpl-3.0.html -from jrnl.messages.Message import Message # noqa: F401 -from jrnl.messages.MsgStyle import MsgStyle # noqa: F401 -from jrnl.messages.MsgText import MsgText # noqa: F401 +from jrnl.messages import Message +from jrnl.messages import MsgStyle +from jrnl.messages import MsgText + +Message = Message.Message +MsgStyle = MsgStyle.MsgStyle +MsgText = MsgText.MsgText