mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 03:27:44 +00:00
python: simplify the code a bit
This commit is contained in:
parent
f8e0a73fb5
commit
355d242e7a
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ for d in data:
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
# if it is SKIP or ERROR, show it
|
# if it is SKIP or ERROR, show it
|
||||||
if data[d][e] == "SKIP" or data[d][e] == "ERROR":
|
if data[d][e] in ("SKIP", "ERROR"):
|
||||||
list_of_files.remove(a)
|
list_of_files.remove(a)
|
||||||
error_or_skip_tests.append(a)
|
error_or_skip_tests.append(a)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue