Appease flake8 on the linting
continuous-integration/drone/push Build is passing Details

This commit is contained in:
decentral1se 2021-04-04 21:15:00 +02:00
parent 4e9aefcafd
commit c531faec52
Signed by: decentral1se
GPG Key ID: 92DAD76BD9567B8A
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ steps:
- name: run flake8
image: alpine/flake8:3.9.0
commands:
- flake8 bin/app-json.py
- flake8 --max-line-length 100 bin/app-json.py
- name: run unit tests
image: decentral1se/docker-dind-bats-kcov

View File

@ -171,7 +171,7 @@ def get_app_versions(app_path, cached_apps_json):
tags = _run_cmd("git tag --list").split()
if not tags:
log.info(f"No tags discovered, moving on")
log.info("No tags discovered, moving on")
return {}
initial_branch = _run_cmd("git rev-parse --abbrev-ref HEAD")