From dc646c5cb9436f7ba123c196c8965c673f0e9d6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= Date: Wed, 17 Jun 2020 20:06:19 +0200 Subject: [PATCH] Apply suggestion to meshmode/dof_array.py --- meshmode/dof_array.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshmode/dof_array.py b/meshmode/dof_array.py index 0bba5971..1f1a1692 100644 --- a/meshmode/dof_array.py +++ b/meshmode/dof_array.py @@ -79,7 +79,7 @@ class DOFArray(np.ndarray): def __array_finalize__(self, obj): if obj is None: return - self.array_context = getattr(obj, 'array_context', None) + self.array_context = getattr(obj, "array_context", None) @property def entry_dtype(self): -- GitLab