port/PyAssimp/pyassimp/core.py: remove deprecated unused import & unnecessary from ctype import pointer

pull/2392/head
Charlie Gettys 2019-03-27 13:06:14 -04:00
parent 1371cb59d9
commit 49033513ef
1 changed files with 2 additions and 2 deletions

View File

@ -20,6 +20,7 @@ try: import numpy
except: numpy = None except: numpy = None
import logging import logging
import ctypes
logger = logging.getLogger("pyassimp") logger = logging.getLogger("pyassimp")
# attach default null handler to logger so it doesn't complain # attach default null handler to logger so it doesn't complain
# even if you don't attach another handler to logger # even if you don't attach another handler to logger
@ -343,8 +344,7 @@ def export(scene,
''' '''
from ctypes import pointer exportStatus = _assimp_lib.export(ctypes.pointer(scene), file_type.encode("ascii"), filename.encode(sys.getfilesystemencoding()), processing)
exportStatus = _assimp_lib.export(pointer(scene), file_type.encode("ascii"), filename.encode(sys.getfilesystemencoding()), processing)
if exportStatus != 0: if exportStatus != 0:
raise AssimpError('Could not export scene!') raise AssimpError('Could not export scene!')