From 65362ddfc2bed0a28a7c071962366c206d552d97 Mon Sep 17 00:00:00 2001 From: zy69guqi <richard.angersbach@fau.de> Date: Wed, 30 Apr 2025 13:55:29 +0200 Subject: [PATCH] Fix typecheck note for match args of PsConstantFunction --- src/pystencils/backend/functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pystencils/backend/functions.py b/src/pystencils/backend/functions.py index 3ff61e039..6a9d3e4f4 100644 --- a/src/pystencils/backend/functions.py +++ b/src/pystencils/backend/functions.py @@ -163,7 +163,7 @@ class PsConstantFunction(PsFunction): and will be broadcast by the vectorizer. """ - __match_args__ = ("func,") + __match_args__ = ("func",) def __init__( self, func: ConstantFunctions, dtype: PsNumericType | None = None -- GitLab