Skip to content

Commit 436d921

Browse files
committed
fix flake8 error
1 parent 9978c45 commit 436d921

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/h5json/hdf5db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ def getAttribute(self, obj_id, name, includeData=True):
285285
attrs = obj_json["attributes"]
286286

287287
if name not in attrs:
288-
msg = f"Attribute: [{name }] not found in object: {obj_id}"
288+
msg = f"Attribute: [{name}] not found in object: {obj_id}"
289289
self.log.info(msg)
290290
return None
291291
if attrs[name] is None:

src/h5json/reader/h5json_reader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from ..hdf5dtype import createDataType
1818
from ..array_util import jsonToArray
1919
from .. import selections
20-
from ..h5reader import H5Reader
20+
from .h5reader import H5Reader
2121

2222

2323
class H5JsonReader(H5Reader):

0 commit comments

Comments
 (0)