From dafde564f3ea18655b1e15f410df70d05b3eb8f5 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Wed, 16 Nov 2016 11:58:18 -0500 Subject: [PATCH] Add __future__ imports to a new module --- beets/util/collections.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/beets/util/collections.py b/beets/util/collections.py index 6813b95df..696dc9a98 100644 --- a/beets/util/collections.py +++ b/beets/util/collections.py @@ -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