pyflakes helped fixes: mclevelbase.py: unravel import all of entity, faces, materials, nbt and numpy modules, none of which were actually used directly

This commit is contained in:
David Sowder 2012-03-04 10:09:35 -06:00
parent 29859b71ee
commit 32c827da6e

View File

@ -3,18 +3,10 @@ Created on Jul 22, 2011
@author: Rio
'''
import os
from contextlib import contextmanager
from numpy import *
from logging import getLogger
from nbt import *
from materials import *
from entity import *
from faces import *
#String constants for common tag names
import os
log = getLogger(__name__)
warn, error, info, debug = log.warn, log.error, log.info, log.debug