summaryrefslogtreecommitdiff
path: root/bin/check-autocorr.py
diff options
context:
space:
mode:
authorIlmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>2024-07-25 18:20:11 +0300
committerIlmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>2024-07-25 19:57:10 +0200
commit9471fce06e996e4433a8000ead704fda91588d1d (patch)
tree907685cf835e446acf04cdd176d940bed39e4a4e /bin/check-autocorr.py
parent6f3a37d074440d29048239bc9cc0175d90f51d9f (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-xbin/check-autocorr.py2
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)