From caa9ac4979c837dcaf5bf7f1b705964ace8fa1af Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Tue, 13 Sep 2022 19:01:10 +0000 Subject: [PATCH] Format code with black and autopep8 This commit fixes the style issues introduced in 7fb8777 according to the output from black and autopep8. Details: https://deepsource.io/gh/GradienceTeam/Gradience/transform/8a127f02-2e93-467c-a43f-945321e4b19e/ --- build-aux/meson_post_install.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/build-aux/meson_post_install.py b/build-aux/meson_post_install.py index 5a61fc2d..a496a557 100644 --- a/build-aux/meson_post_install.py +++ b/build-aux/meson_post_install.py @@ -3,7 +3,10 @@ import os import subprocess -build_root = os.environ.get('MESON_BUILD_ROOT') -source_root = os.environ.get('MESON_SOURCE_ROOT') +build_root = os.environ.get("MESON_BUILD_ROOT") +source_root = os.environ.get("MESON_SOURCE_ROOT") -subprocess.call(['mv', build_root, 'gradience/constants.py', source_root, 'gradience/constants.py']) +subprocess.call( + ["mv", build_root, "gradience/constants.py", + source_root, "gradience/constants.py"] +)