From 9803bbdc4b1060b63ab1f85cc944b07e7e18d27e Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 18 Oct 2024 12:24:35 +0000 Subject: [PATCH] Python: Update class parser test --- python/extractor/tests/parser/class.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/extractor/tests/parser/class.py b/python/extractor/tests/parser/class.py index d1d4694fb3f2..ffaefbcb5dac 100644 --- a/python/extractor/tests/parser/class.py +++ b/python/extractor/tests/parser/class.py @@ -1,2 +1,2 @@ -class Foo(int, object, metaclass=type): +class Foo(int, object, metaclass=type, **kwargs): x = 5