minor formatting/cleanup

This commit is contained in:
Manuel Barkhau 2019-02-14 22:05:02 +01:00
parent bc87ab1b88
commit 2cb7f53f6d
6 changed files with 8 additions and 8 deletions

View file

@ -265,7 +265,7 @@ def parse(ctx: ProjectContext) -> MaybeConfig:
log.warning(f"File not found: {ctx.config_filepath}")
return None
fh : typ.IO[str]
fh: typ.IO[str]
try:
with ctx.config_filepath.open(mode="rt", encoding="utf-8") as fh: