From ee54217d80e2dbb80661cabf1d3e0c68bcd7db7d Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sat, 9 Mar 2024 14:52:32 -0500 Subject: [PATCH] Applied Black --- llm/templates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llm/templates.py b/llm/templates.py index 55564a73..faa4e200 100644 --- a/llm/templates.py +++ b/llm/templates.py @@ -54,7 +54,7 @@ def interpolate(cls, text: Optional[str], params: Dict[str, Any]) -> Optional[st def extract_identifiers(cls, template: string.Template) -> List[str]: (major, minor, patchlevel) = platform.python_version_tuple() if int(major) >= 3 and int(minor) >= 11: - # Added in Python 3.11 + # Added in Python 3.11 return template.get_identifiers() else: result = set()