Skip to content

Commit

Permalink
flake8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mpvanderschelling committed Nov 5, 2024
1 parent 37f123d commit 21ebdf1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/f3dasm/_src/experimentdata/_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,8 +332,9 @@ def save_object(object: Any, path: Path, experimentdata_directory: Path,

if object_type not in STORE_TYPE_MAPPING:
storage: StoreProtocol = PickleStore(object, _path)
logger.debug(f"Object type {object_type} is not natively supported. "
f"The default pickle storage method will be used.")
logger.debug(
f"Object type {object_type} is not natively supported. "
f"The default pickle storage method will be used.")

else:
storage: StoreProtocol = STORE_TYPE_MAPPING[object_type](
Expand Down

0 comments on commit 21ebdf1

Please sign in to comment.