From df6e8cd2fc72c8f97796ed264503924a4f45eb6b Mon Sep 17 00:00:00 2001 From: MinchinWeb Date: Tue, 14 Apr 2020 19:56:03 -0600 Subject: [PATCH] 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 dcf4cfd0..69beabcf 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 Journal import codecs import os 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