diff options
author | Mats Wichmann <mats@linux.com> | 2020-09-21 08:21:38 -0600 |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2020-09-21 10:39:39 -0600 |
commit | 22c489260a659971aa6cea88f1024824fe31152d (patch) | |
tree | c67489084dcaa97d8c442033cfd213db0dcd4a19 /test/Java/nested-classes.py | |
parent | 858ae87bad24f9df9b1731d154e72cf6d06f05de (diff) | |
download | scons-git-22c489260a659971aa6cea88f1024824fe31152d.tar.gz |
Run autoflake on code
Eliminate unneeded imports, and a few unneeded statements -
usually "pass" where it is not syntactically needed.
A couple of import try blocks were eliminated or changed
when they're "cannot happen" due to current floor Python version.
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'test/Java/nested-classes.py')
-rw-r--r-- | test/Java/nested-classes.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/Java/nested-classes.py b/test/Java/nested-classes.py index a76405444..0208eb637 100644 --- a/test/Java/nested-classes.py +++ b/test/Java/nested-classes.py @@ -28,7 +28,6 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" Test Java compilation with inner and anonymous classes (Issue 2087). """ -import os import TestSCons |