aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/check_formatting.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/check_formatting.py')
-rwxr-xr-xscripts/check_formatting.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check_formatting.py b/scripts/check_formatting.py
index e3342603..27daebe5 100755
--- a/scripts/check_formatting.py
+++ b/scripts/check_formatting.py
@@ -20,7 +20,7 @@ def run_formatter(command, good_path):
"""Run the formatter and compare the output."""
with subprocess.Popen(
- command, stderr=DEVNULL, stdout=PIPE, encoding="utf-8"
+ command, encoding="utf-8", stderr=DEVNULL, stdout=PIPE
) as proc:
out = list(proc.stdout)