From 22db95993a8800aebcebeaf08d9b7bb4fc719fd5 Mon Sep 17 00:00:00 2001 From: disrupted Date: Tue, 11 Mar 2025 19:57:53 +0100 Subject: [PATCH] test: expand test --- tests/query/highlights/python/functions.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/query/highlights/python/functions.py b/tests/query/highlights/python/functions.py index e80f03f88..754d5b64c 100644 --- a/tests/query/highlights/python/functions.py +++ b/tests/query/highlights/python/functions.py @@ -3,6 +3,9 @@ def func() -> None: ... _ = func() # ^^^^ @function.call +"{}".format(1) +# ^^^^^^ @function.call + class Foo: def method(self) -> None: ...