File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1414
1515from .ffd import FFD
1616from .rbf import RBF
17- from .idw import IDW
18- from .custom_deformation import CustomDeformation
17+ from .idw import IDW # noqa: F401
18+ from .custom_deformation import CustomDeformation # noqa: F401
1919from .cad_deformation import CADDeformation
Original file line number Diff line number Diff line change 2727return_value = 0 # Success
2828
2929try :
30- import pygem .cad # pylint: disable=unused-import
30+ import pygem .cad # pylint: disable=unused-import # noqa: F401
3131
3232 return_value = 1 if nose .run (argv = cad_argv ) is False else 0
3333except ImportError :
Original file line number Diff line number Diff line change 4949# mesh parsing
5050# OFPP import
5151try :
52- import Ofpp
52+ import Ofpp # noqa: F401
5353except ImportError :
5454 raise ImportError (
5555 "OFPP not found. Please install it before running this script.\n "
You can’t perform that action at this time.
0 commit comments