mirror of
https://github.com/beetbox/beets.git
synced 2025-12-30 20:42:37 +01:00
Add __future__ imports to a new module
This commit is contained in:
parent
6d3497c560
commit
dafde564f3
1 changed files with 4 additions and 1 deletions
|
|
@ -12,9 +12,12 @@
|
|||
#
|
||||
# The above copyright notice and this permission notice shall be
|
||||
# included in all copies or substantial portions of the Software.
|
||||
"""Custom collections classes
|
||||
|
||||
"""Custom collections classes.
|
||||
"""
|
||||
|
||||
from __future__ import division, absolute_import, print_function
|
||||
|
||||
|
||||
class IdentityFallbackDict(dict):
|
||||
"""A dictionary which is "transparent" (maps keys to themselves) for all
|
||||
|
|
|
|||
Loading…
Reference in a new issue