[isort] 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-11 11:51:01 -06:00
parent 9215dc5692
commit 65fe464c5d
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 Entry from . import Entry
from . import Journal from . import Journal
import codecs import codecs

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