Skip to content

Commit cf784c0

Browse files
committed
fix(config_reader): Typing
1 parent 00827d3 commit cf784c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tmuxp/config_reader.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def _from_file(cls, path: pathlib.Path):
102102
content = open(path).read()
103103

104104
if path.suffix in [".yaml", ".yml"]:
105-
format: FormatLiteral = "yaml"
105+
format: "FormatLiteral" = "yaml"
106106
elif path.suffix == ".json":
107107
format = "json"
108108
else:

0 commit comments

Comments
 (0)