Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mac
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2023-01-03 02:50:21 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-01-03 02:50:21 +0300
commita2c647728472d1b68aec385c05080c6f3c674dde (patch)
tree4e107de8b6a36376784250acffcbcd581c567035 /mac
parent94d509e86b1f1b57aa64e3a4abf2e661856c5d51 (diff)
cq: Sort imports with isort
Diffstat (limited to 'mac')
-rwxr-xr-xmac/makebundle.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/mac/makebundle.py b/mac/makebundle.py
index 246cbc6aa..87110edb0 100755
--- a/mac/makebundle.py
+++ b/mac/makebundle.py
@@ -3,7 +3,9 @@
import os
import sys
from argparse import ArgumentParser
-from subprocess import run, check_output, CalledProcessError
+from subprocess import CalledProcessError
+from subprocess import check_output
+from subprocess import run
if __name__ == '__main__':
if not os.path.isdir('mac'):