Skip to content

Commit

Permalink
Resolve lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
dflook committed Oct 14, 2024
1 parent 22823f3 commit 8002d50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion xtest/test_regrtest.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,4 +128,4 @@ def test_regrtest(test_case):


if __name__ == '__main__':
exit(manifest.verify())
sys.exit(manifest.verify())
2 changes: 1 addition & 1 deletion xtest/test_unparse_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def gather_files():
print('Interpreter version: ', sys.version_info)
print('sys.path: ', sys.path)
for sys_path in sys.path:
for subdir, dirs, files in os.walk(sys_path):
for subdir, _dirs, files in os.walk(sys_path):
for file in filter(lambda f: f.endswith('.py'), [os.path.join(subdir, file) for file in files]):
yield file

Expand Down

0 comments on commit 8002d50

Please sign in to comment.