REFACTOR: Remove __future__ imports

This commit is contained in:
Dominique Barton 2020-02-08 19:04:48 +01:00
parent 1ec03ec764
commit 56e11dd0df
11 changed files with 0 additions and 22 deletions

View file

@ -3,8 +3,6 @@
Mopidy Pummeluff Python module.
'''
from __future__ import absolute_import, unicode_literals
import os
import mopidy

View file

@ -3,8 +3,6 @@
Python module for Mopidy Pummeluff actions.
'''
from __future__ import absolute_import, unicode_literals, print_function
__all__ = (
'replace_tracklist',
'set_volume',

View file

@ -3,8 +3,6 @@
Python module for Mopidy Pummeluff frontend.
'''
from __future__ import absolute_import, unicode_literals, print_function
__all__ = (
'PummeluffFrontend',
)

View file

@ -3,8 +3,6 @@
Python module for Mopidy Pummeluff registry.
'''
from __future__ import absolute_import, unicode_literals, print_function
__all__ = (
'RegistryDict',
'REGISTRY',

View file

@ -3,8 +3,6 @@
Python module to play sounds.
'''
from __future__ import absolute_import, unicode_literals, print_function
__all__ = (
'play_sound',
)

View file

@ -3,8 +3,6 @@
Python module for Mopidy Pummeluff tags.
'''
from __future__ import absolute_import, unicode_literals, print_function
__all__ = (
'Tag',
'TracklistTag',

View file

@ -3,7 +3,5 @@
Threads of Mopidy Pummeluff.
'''
from __future__ import absolute_import, unicode_literals, print_function
from .gpio_handler import *
from .tag_reader import *

View file

@ -3,8 +3,6 @@
Python module for the dedicated Mopidy Pummeluff threads.
'''
from __future__ import absolute_import, unicode_literals, print_function
__all__ = (
'GPIOHandler',
)

View file

@ -3,8 +3,6 @@
Python module for the dedicated Mopidy Pummeluff threads.
'''
from __future__ import absolute_import, unicode_literals, print_function
__all__ = (
'TagReader',
)

View file

@ -3,8 +3,6 @@
Python module for Mopidy Pummeluff web classes.
'''
from __future__ import absolute_import, unicode_literals
__all__ = (
'LatestHandler',
'RegistryHandler',

View file

@ -3,8 +3,6 @@
Setup script for Mopidy-Pummeluff module.
'''
from __future__ import absolute_import, unicode_literals, print_function
from setuptools import setup, find_packages
with open('requirements.txt') as f: