mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-08 18:36:17 +01:00
905b22a17e
This commit is the unmodified results of running ``` black $(git ls-files '*.py') ``` with black version 19.10b0. See #2046. Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
10 lines
188 B
Python
10 lines
188 B
Python
#!/usr/bin/env python3
|
|
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
|
|
if not os.environ.get("DESTDIR"):
|
|
print("GIO module cache creation...")
|
|
subprocess.call([sys.argv[1], sys.argv[2]])
|