mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
Merge pull request #302 from YunoHost/actions/black
Format Python code with Black
This commit is contained in:
commit
8e3a52446a
1 changed files with 7 additions and 1 deletions
8
setup.py
8
setup.py
|
@ -7,7 +7,13 @@ import subprocess
|
|||
from setuptools import setup, find_packages
|
||||
from moulinette import env
|
||||
|
||||
version = subprocess.check_output("head debian/changelog -n1 | awk '{print $2}' | tr -d '()'", shell=True).decode().strip()
|
||||
version = (
|
||||
subprocess.check_output(
|
||||
"head debian/changelog -n1 | awk '{print $2}' | tr -d '()'", shell=True
|
||||
)
|
||||
.decode()
|
||||
.strip()
|
||||
)
|
||||
|
||||
LOCALES_DIR = env["LOCALES_DIR"]
|
||||
|
||||
|
|
Loading…
Reference in a new issue