port/PyAssimp/pyassimp/structs.py: remove unused import of c_int

pull/2392/head
Charlie Gettys 2019-03-27 13:26:04 -04:00
parent 1614b7bea4
commit 1b9157440f
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#-*- coding: UTF-8 -*-
from ctypes import POINTER, c_void_p, c_int, c_uint, c_char, c_float, Structure, c_char_p, c_double, c_ubyte, c_size_t, c_uint32
from ctypes import POINTER, c_void_p, c_uint, c_char, c_float, Structure, c_char_p, c_double, c_ubyte, c_size_t, c_uint32
class Vector2D(Structure):