code formatting: black --skip-string-normalization --line-length 100

This commit is contained in:
Hans-Christoph Steiner 2021-03-18 15:26:42 +01:00
parent 7f458f8f8c
commit 08cde5c2e6
5 changed files with 21 additions and 20 deletions

View file

@ -73,9 +73,7 @@ def main():
sigpath = os.path.join(output_dir, sigfilename)
if not os.path.exists(sigpath):
gpgargs = ['gpg', '-a',
'--output', sigpath,
'--detach-sig']
gpgargs = ['gpg', '-a', '--output', sigpath, '--detach-sig']
if 'gpghome' in config:
gpgargs.extend(['--homedir', config['gpghome']])
if 'gpgkey' in config: