From cf784c0c2ee3fff73c687ebc37c73bb58e832901 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Mon, 26 Dec 2022 18:33:43 -0600 Subject: [PATCH] fix(config_reader): Typing --- src/tmuxp/config_reader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tmuxp/config_reader.py b/src/tmuxp/config_reader.py index 32ccbfe26e..4b64d127b5 100644 --- a/src/tmuxp/config_reader.py +++ b/src/tmuxp/config_reader.py @@ -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: