Skip to content

Commit f8a52eb

Browse files
committed
chore: more flake8 fixes
1 parent 370b76c commit f8a52eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/workflows/python_pip/test_python_pip.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ def test_must_build_python_project(self):
5555
self.assertEquals(expected_files, output_files)
5656

5757
def test_mismatch_runtime_python_project(self):
58-
# NOTE : Build still works if other versions of python are accesible on the path. eg: /usr/bin/python2.7
58+
# NOTE : Build still works if other versions of python are accessible on the path. eg: /usr/bin/python2.7
5959
# is still accessible within a python 3 virtualenv.
6060
try:
6161
self.builder.build(self.source_dir, self.artifacts_dir, self.scratch_dir, self.manifest_path_valid,
6262
runtime=self.runtime_mismatch[self.runtime])
63-
except MisMatchRuntimeError as ex:
63+
except MisMatchRuntimeError:
6464
self.assertIsNone(which(self.runtime_mismatch[self.runtime]))
6565

6666
def test_runtime_validate_python_project_fail_open_unsupported_runtime(self):

0 commit comments

Comments
 (0)