Skip to content

Commit 3e36876

Browse files
committed
minor flake8 fixes
1 parent 673f346 commit 3e36876

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pygem/cad/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414

1515
from .ffd import FFD
1616
from .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
1919
from .cad_deformation import CADDeformation

test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
return_value = 0 # Success
2828

2929
try:
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
3333
except ImportError:

tutorials/tutorial6/tutorial-6-ffd-rbf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
# mesh parsing
5050
# OFPP import
5151
try:
52-
import Ofpp
52+
import Ofpp # noqa: F401
5353
except ImportError:
5454
raise ImportError(
5555
"OFPP not found. Please install it before running this script.\n"

0 commit comments

Comments
 (0)