Skip to content

Commit

Permalink
fix(config_reader): Typing
Browse files Browse the repository at this point in the history
  • Loading branch information
tony committed Dec 27, 2022
1 parent 00827d3 commit cf784c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tmuxp/config_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def _from_file(cls, path: pathlib.Path):
content = open(path).read()

if path.suffix in [".yaml", ".yml"]:
format: FormatLiteral = "yaml"
format: "FormatLiteral" = "yaml"
elif path.suffix == ".json":
format = "json"
else:
Expand Down

0 comments on commit cf784c0

Please sign in to comment.