Skip to content

Commit

Permalink
fix flake8 error
Browse files Browse the repository at this point in the history
  • Loading branch information
jreadey committed Oct 24, 2024
1 parent abd0c10 commit 881c468
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion h5pyd/_hl/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 881c468

Please sign in to comment.