diff options
author | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2024-07-25 14:25:42 +0300 |
---|---|---|
committer | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2024-07-25 15:16:44 +0200 |
commit | 5fc6ef5990fa66982a3803916f32f7aa8d7f9692 (patch) | |
tree | 4b52ec1edda4257af30041564986b3c5e0c6cf02 /bin/check-implementer-notes.py | |
parent | 8ee0b01f226665c877d5ed59b23eec278800a667 (diff) |
bin: fix issues found by Ruff linter
Change-Id: Ic81d21a90059f5db87543c8ce2abb8007f278f14
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171008
Tested-by: Jenkins
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Diffstat (limited to 'bin/check-implementer-notes.py')
-rwxr-xr-x | bin/check-implementer-notes.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/check-implementer-notes.py b/bin/check-implementer-notes.py index e637563d2f86..24e4049ddeba 100755 --- a/bin/check-implementer-notes.py +++ b/bin/check-implementer-notes.py @@ -1,6 +1,10 @@ #!/usr/bin/env python -import json, re, subprocess, sys, urllib3 +import json +import re +import subprocess +import sys +import urllib3 http = urllib3.PoolManager() |