Fix __future__ import in util

This syntax is accepted by CPython, but it doesn't work on PyPy.
This commit is contained in:
Davide Depau 2017-11-12 17:17:08 +01:00 committed by GitHub
parent b6cf895c56
commit fd7fdec565
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,11 +1,10 @@
# coding=utf-8
from __future__ import absolute_import
from __future__ import absolute_import, division, print_function
"""
This module bundles commonly used utility methods or helper classes that are used in multiple places withing
OctoPrint's source code.
"""
from __future__ import absolute_import, division, print_function
__author__ = "Gina Häußge <osd@foosel.net>"
__license__ = 'GNU Affero General Public License http://www.gnu.org/licenses/agpl.html'