From 8964a052c8fbe9a97e0db2a0b0eab2379a5cf733 Mon Sep 17 00:00:00 2001 From: Faraphel Date: Sun, 24 Jul 2022 23:16:36 +0200 Subject: [PATCH] fixed a typo --- source/safe_eval.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/safe_eval.py b/source/safe_eval.py index c927b2f..1565ac6 100644 --- a/source/safe_eval.py +++ b/source/safe_eval.py @@ -78,7 +78,7 @@ def safe_eval(template: str, env: dict[str, any] = None, macros: dict[str, str] Evaluate the template and return the result in a safe way :param env: variables to use when using eval :param template: template to evaluate - :param macros: additionnal macro to replace in the template + :param macros: additional macro to replace in the template """ if env is None: env = {} if macros is None: macros = {}