From 65fe464c5dafa0653181c1394b33e6fc20814f63 Mon Sep 17 00:00:00 2001 From: MinchinWeb Date: Sat, 11 Apr 2020 11:51:01 -0600 Subject: [PATCH] [isort] remove __future__ imports These are from our days for supporting Python 2, and are no longer needed --- jrnl/FolderJournal.py | 1 - jrnl/plugins/fancy_exporter.py | 1 - 2 files changed, 2 deletions(-) diff --git a/jrnl/FolderJournal.py b/jrnl/FolderJournal.py index 19519a14..098407d9 100644 --- a/jrnl/FolderJournal.py +++ b/jrnl/FolderJournal.py @@ -1,7 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -from __future__ import absolute_import, unicode_literals from . import Entry from . import Journal import codecs diff --git a/jrnl/plugins/fancy_exporter.py b/jrnl/plugins/fancy_exporter.py index f7ff491d..beae33e5 100644 --- a/jrnl/plugins/fancy_exporter.py +++ b/jrnl/plugins/fancy_exporter.py @@ -1,7 +1,6 @@ #!/usr/bin/env python # encoding: utf-8 -from __future__ import absolute_import, unicode_literals, print_function from .text_exporter import TextExporter from textwrap import TextWrapper