port/PyAssimp/pyassimp/: remove several unised imports
parent
1b9157440f
commit
efbb85721c
|
@ -24,12 +24,13 @@ This sample is based on several sources, including:
|
||||||
- ASSIMP's C++ SimpleOpenGL viewer
|
- ASSIMP's C++ SimpleOpenGL viewer
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import os, sys
|
import sys
|
||||||
from OpenGL.GLUT import *
|
from OpenGL.GLUT import *
|
||||||
from OpenGL.GLU import *
|
from OpenGL.GLU import *
|
||||||
from OpenGL.GL import *
|
from OpenGL.GL import *
|
||||||
|
|
||||||
import logging;logger = logging.getLogger("pyassimp_opengl")
|
import logging
|
||||||
|
logger = logging.getLogger("pyassimp_opengl")
|
||||||
logging.basicConfig(level=logging.INFO)
|
logging.basicConfig(level=logging.INFO)
|
||||||
|
|
||||||
import math
|
import math
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
This module demonstrates the functionality of PyAssimp.
|
This module demonstrates the functionality of PyAssimp.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import os, sys
|
import sys
|
||||||
import logging
|
import logging
|
||||||
logging.basicConfig(level=logging.INFO)
|
logging.basicConfig(level=logging.INFO)
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,8 @@
|
||||||
"""Parse an EXPRESS file and extract basic information on all
|
"""Parse an EXPRESS file and extract basic information on all
|
||||||
entities and data types contained"""
|
entities and data types contained"""
|
||||||
|
|
||||||
import sys, os, re
|
import sys
|
||||||
|
import re
|
||||||
from collections import OrderedDict
|
from collections import OrderedDict
|
||||||
|
|
||||||
re_match_entity = re.compile(r"""
|
re_match_entity = re.compile(r"""
|
||||||
|
|
Loading…
Reference in New Issue