mirror of
https://github.com/beetbox/beets.git
synced 2025-12-24 01:25:47 +01:00
Fix test.helper __future__ imports
This commit is contained in:
parent
02d8e88ef1
commit
afb1611cf2
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue