Skip to content

Commit 54c0978

Browse files
committed
avoid apparent unused import
1 parent 9952165 commit 54c0978

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/pyff/test/test_pipeline.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
from mako.lookup import TemplateLookup
99
from mock import patch
1010

11-
# don't remove this - it only appears unused to static analysis
1211
from pyff import builtins
1312
from pyff.exceptions import MetadataException
1413
from pyff.parse import ParserException
@@ -21,6 +20,9 @@
2120

2221
__author__ = 'leifj'
2322

23+
# The 'builtins' import appears unused to static analysers, ensure it isn't removed
24+
assert builtins is not None
25+
2426

2527
class PipeLineTest(SignerTestCase):
2628
def run_pipeline(self, pl_name, ctx=None, md=None):

0 commit comments

Comments
 (0)