remove unused TYPES_TYPE from confit

This commit is contained in:
Johnny Robeson 2016-05-26 21:30:54 -04:00
parent 6d0727f143
commit 34f17fbf02

View file

@ -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):