mirror of
https://github.com/beetbox/beets.git
synced 2025-12-23 17:13:30 +01:00
remove some prints, unused libraries, __setitem__ method
This commit is contained in:
parent
a51ef113d3
commit
2bc0027adf
3 changed files with 0 additions and 6 deletions
|
|
@ -60,10 +60,6 @@ class Map(dict):
|
|||
def __setattr__(self, key, value):
|
||||
self.__setitem__(key, value)
|
||||
|
||||
def __setitem__(self, key, value):
|
||||
super(Map, self).__setitem__(key, value)
|
||||
self.__dict__.update({key: value})
|
||||
|
||||
def __delattr__(self, item):
|
||||
self.__delitem__(item)
|
||||
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@
|
|||
from __future__ import division, absolute_import, print_function
|
||||
|
||||
import re
|
||||
import copy
|
||||
import unittest
|
||||
|
||||
from test import _common
|
||||
|
|
|
|||
|
|
@ -22,7 +22,6 @@ import shutil
|
|||
import re
|
||||
import subprocess
|
||||
import platform
|
||||
from copy import deepcopy
|
||||
import six
|
||||
import unittest
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue