remove __future__ imports

These are from our days for supporting Python 2, and are no longer needed.
This commit is contained in:
MinchinWeb 2020-04-14 19:56:03 -06:00
parent 952cb9060a
commit 7bc9dad679
2 changed files with 0 additions and 2 deletions

View file

@ -1,7 +1,6 @@
#!/usr/bin/env python #!/usr/bin/env python
# encoding: utf-8 # encoding: utf-8
from __future__ import absolute_import, unicode_literals
from . import Journal from . import Journal
import codecs import codecs
import os import os

View file

@ -1,7 +1,6 @@
#!/usr/bin/env python #!/usr/bin/env python
# encoding: utf-8 # encoding: utf-8
from __future__ import absolute_import, unicode_literals, print_function
from .text_exporter import TextExporter from .text_exporter import TextExporter
from textwrap import TextWrapper from textwrap import TextWrapper