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/
This commit is contained in:
deepsource-autofix[bot] 2022-09-13 19:01:10 +00:00 committed by GitHub
parent 7fb8777aaf
commit caa9ac4979
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"]
)