diff options
author | Adam Gross <grossag@vmware.com> | 2020-11-17 20:31:06 (GMT) |
---|---|---|
committer | Adam Gross <grossag@vmware.com> | 2020-11-17 23:36:06 (GMT) |
commit | a6f317b4301d968cbda2c7fbe903d23347900bf8 (patch) | |
tree | 3c51c91cc45d1e06b13b06b2dc6df2cebbd8b076 /test/fixture | |
parent | bac3074b9f700a020bfeaad37658d8a2db68cffd (diff) | |
download | SCons-a6f317b4301d968cbda2c7fbe903d23347900bf8.zip SCons-a6f317b4301d968cbda2c7fbe903d23347900bf8.tar.gz SCons-a6f317b4301d968cbda2c7fbe903d23347900bf8.tar.bz2 |
[ci skip] Fix flake8 warnings, add description to CHANGES.txt
Diffstat (limited to 'test/fixture')
-rw-r--r-- | test/fixture/python_scanner/imports_unknown_files.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/fixture/python_scanner/imports_unknown_files.py b/test/fixture/python_scanner/imports_unknown_files.py index 2059181..5582e7b 100644 --- a/test/fixture/python_scanner/imports_unknown_files.py +++ b/test/fixture/python_scanner/imports_unknown_files.py @@ -1,3 +1,3 @@ -import doesntexist -import notthere.something -from notthere import a, few, things
\ No newline at end of file +import doesntexist # noqa: F401 +import notthere.something # noqa: F401 +from notthere import a, few, things # noqa: F401
\ No newline at end of file |