diff options
author | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2024-07-25 18:20:11 +0300 |
---|---|---|
committer | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2024-07-25 19:57:10 +0200 |
commit | 9471fce06e996e4433a8000ead704fda91588d1d (patch) | |
tree | 907685cf835e446acf04cdd176d940bed39e4a4e /bin/check-autocorr.py | |
parent | 6f3a37d074440d29048239bc9cc0175d90f51d9f (diff) |
bin: fix issues found by Ruff linter
Change-Id: I44e546defb278bb5217ed028dcaebc9fb2d23f0b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171020
Tested-by: Jenkins
Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Diffstat (limited to 'bin/check-autocorr.py')
-rwxr-xr-x | bin/check-autocorr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/check-autocorr.py b/bin/check-autocorr.py index f865d3e891ce..052fd97274d0 100755 --- a/bin/check-autocorr.py +++ b/bin/check-autocorr.py @@ -33,6 +33,6 @@ for element in elements_x: print('In ' + complete_file + ' same value: ' + value_a) bAllFilesOk = False -if bAllFilesOk == True: +if bAllFilesOk: exit(0) exit(1) |