pyflakes complained
This commit is contained in:
parent
5682d8f627
commit
0632dc1308
|
@ -1,7 +1,7 @@
|
||||||
# -*- coding: UTF-8 no BOM -*-
|
# -*- coding: UTF-8 no BOM -*-
|
||||||
|
|
||||||
"""Main aggregator"""
|
"""Main aggregator"""
|
||||||
import sys, os
|
import os
|
||||||
|
|
||||||
with open(os.path.join(os.path.dirname(__file__),'../../VERSION')) as f:
|
with open(os.path.join(os.path.dirname(__file__),'../../VERSION')) as f:
|
||||||
version = f.readline()[:-1]
|
version = f.readline()[:-1]
|
||||||
|
@ -11,10 +11,10 @@ from .asciitable import ASCIItable # noqa
|
||||||
from .config import Material # noqa
|
from .config import Material # noqa
|
||||||
from .colormaps import Colormap, Color # noqa
|
from .colormaps import Colormap, Color # noqa
|
||||||
try:
|
try:
|
||||||
from .corientation import Quaternion, Rodrigues, Symmetry, Orientation
|
from .corientation import Quaternion, Rodrigues, Symmetry, Orientation # noqa
|
||||||
print "Import Cython version of Orientation module"
|
print "Import Cython version of Orientation module"
|
||||||
except:
|
except:
|
||||||
from .orientation import Quaternion, Rodrigues, Symmetry, Orientation
|
from .orientation import Quaternion, Rodrigues, Symmetry, Orientation # noqa
|
||||||
#from .block import Block # only one class
|
#from .block import Block # only one class
|
||||||
from .result import Result # noqa
|
from .result import Result # noqa
|
||||||
from .geometry import Geometry # noqa
|
from .geometry import Geometry # noqa
|
||||||
|
|
Loading…
Reference in New Issue