pre-commit autoupdate

This commit is contained in:
Hugo 2020-02-27 22:29:32 +02:00
parent 4e98e7af4c
commit af036ec5d5
2 changed files with 5 additions and 5 deletions

View file

@ -19,7 +19,7 @@ def load_secrets():
if os.path.isfile(secrets_file):
import yaml # pip install pyyaml
with open(secrets_file, "r") as f: # see example_test_pylast.yaml
with open(secrets_file) as f: # see example_test_pylast.yaml
doc = yaml.load(f)
else:
doc = {}