diff options
author | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2024-07-27 14:54:40 +0300 |
---|---|---|
committer | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2024-07-27 15:42:26 +0200 |
commit | 558b20d1acc553f4ffc4361e74e1b955b98a661d (patch) | |
tree | 6a7788334d98d24d02b5fe0c7ff393700aeba90e /msicreator | |
parent | 5ed1415d1cf03a3d671ebd11582dfaa90f1168bd (diff) |
comphelper, msicreator, odk: fix issues found by Ruff linter
Change-Id: I5ef65baeb0100b9d70b5c59c1d5f6f43ab951a22
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171092
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Tested-by: Jenkins
Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Diffstat (limited to 'msicreator')
-rw-r--r-- | msicreator/create_installer.py | 3 | ||||
-rw-r--r-- | msicreator/createmsi.py | 6 |
2 files changed, 7 insertions, 2 deletions
diff --git a/msicreator/create_installer.py b/msicreator/create_installer.py index 01394a48c4a3..5e40bb9547ca 100644 --- a/msicreator/create_installer.py +++ b/msicreator/create_installer.py @@ -1,4 +1,5 @@ -import os, sys +import os +import sys from shutil import copytree, copy2, move, rmtree import json import createmsi diff --git a/msicreator/createmsi.py b/msicreator/createmsi.py index d728e64520d2..0f720b74d380 100644 --- a/msicreator/createmsi.py +++ b/msicreator/createmsi.py @@ -14,7 +14,11 @@ # See the License for the specific language governing permissions and # limitations under the License. -import sys, os, subprocess, shutil, uuid, json, re +import sys +import os +import subprocess +import uuid +import json from glob import glob import platform import xml.etree.ElementTree as ET |