From 0570d46b9037fa0b3c04226a19e3dccca898dd00 Mon Sep 17 00:00:00 2001 From: nbouziani Date: Tue, 12 Sep 2023 16:51:42 +0100 Subject: [PATCH] Fix count --- ufl/core/base_form_operator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ufl/core/base_form_operator.py b/ufl/core/base_form_operator.py index 6ed58dcbf..8adadd039 100644 --- a/ufl/core/base_form_operator.py +++ b/ufl/core/base_form_operator.py @@ -115,7 +115,7 @@ def _analyze_form_arguments(self): def count(self): "Returns the count associated to the base form operator" - return self.count + return self._count @property def ufl_shape(self):