From afb1611cf23ce3ba9df1bf8a981fa3efcffe1f62 Mon Sep 17 00:00:00 2001 From: Bruno Cauet Date: Tue, 20 Jan 2015 12:51:27 +0100 Subject: [PATCH] Fix test.helper __future__ imports --- test/helper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/helper.py b/test/helper.py index 05fb75bed..3e1cb1268 100644 --- a/test/helper.py +++ b/test/helper.py @@ -23,8 +23,6 @@ information or mock the environment. - The `generate_album_info` and `generate_track_info` functions return fixtures to be used when mocking the autotagger. -from __future__ import division, absolute_import, print_function - - The `TestImportSession` allows one to run importer code while controlling the interactions through code. @@ -32,6 +30,8 @@ from __future__ import division, absolute_import, print_function """ +from __future__ import division, absolute_import, print_function + import sys import os import os.path