From 881c46852139e75874be9b41e3fdad740dbb8a28 Mon Sep 17 00:00:00 2001 From: John Readey Date: Thu, 24 Oct 2024 12:03:03 -0500 Subject: [PATCH] fix flake8 error --- h5pyd/_hl/dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/h5pyd/_hl/dataset.py b/h5pyd/_hl/dataset.py index a10f87f..9af7bbb 100644 --- a/h5pyd/_hl/dataset.py +++ b/h5pyd/_hl/dataset.py @@ -1388,7 +1388,7 @@ def __setitem__(self, args, val): args = args if isinstance(args, tuple) else (args,) # get the val dtype if we're passed a numpy array - self.log.debug(f"is ndarray: {isinstance(val, numpy.ndarray) }") + self.log.debug(f"is ndarray: {isinstance(val, numpy.ndarray)}") try: msg = f"val dtype: {val.dtype}, shape: {val.shape} kind: {val.dtype.kind} metadata: {val.dtype.metadata}" self.log.debug(msg)