mirror of
https://github.com/beetbox/beets.git
synced 2025-12-10 18:43:02 +01:00
Merge pull request #2015 from jrobeson/remove-TYPES_TYPE-from-confit
remove unused TYPES_TYPE from confit
This commit is contained in:
commit
69b9d2521e
1 changed files with 0 additions and 2 deletions
|
|
@ -22,7 +22,6 @@ import os
|
|||
import pkgutil
|
||||
import sys
|
||||
import yaml
|
||||
import types
|
||||
import collections
|
||||
import re
|
||||
try:
|
||||
|
|
@ -51,7 +50,6 @@ PY3 = sys.version_info[0] == 3
|
|||
STRING = str if PY3 else unicode
|
||||
BASESTRING = str if PY3 else basestring
|
||||
NUMERIC_TYPES = (int, float) if PY3 else (int, float, long)
|
||||
TYPE_TYPES = (type,) if PY3 else (type, types.ClassType)
|
||||
|
||||
|
||||
def iter_first(sequence):
|
||||
|
|
|
|||
Loading…
Reference in a new issue