1
0
mirror of https://github.com/gryf/ebook-converter.git synced 2026-04-13 17:13:32 +02:00

Removing unneeded from __future__ import statements.

Since we are on Python 3.6 and up, we don't need those anymore.
This commit is contained in:
2020-04-19 17:38:58 +02:00
parent 41b687ee27
commit 48fedea799
331 changed files with 1178 additions and 2067 deletions

View File

@@ -1,6 +1,3 @@
#!/usr/bin/python2
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:fdm=marker:ai
#
# Copyright (C) 2006 Søren Roug, European Environment Agency
#
# This is free software. You may redistribute it under the terms
@@ -18,8 +15,6 @@
#
# Contributor(s):
#
from __future__ import absolute_import, division, print_function, unicode_literals
import io
import json
import os
@@ -39,6 +34,7 @@ from odf.namespaces import DCNS, METANS, OFFICENS
from odf.opendocument import load as odLoad
from ebook_converter.polyglot.builtins import as_unicode
fields = {
'title': (DCNS, 'title'),
'description': (DCNS, 'description'),