Skip to content

Commit

Permalink
fix regex
Browse files Browse the repository at this point in the history
  • Loading branch information
ziw-liu committed Feb 17, 2024
1 parent dab5857 commit fa8fbc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iohub/mmstack.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def __init__(self, data_path: StrOrBytesPath):
with catch_warnings():
# The IJMetadata tag (50839) is sometimes not written
# See https://micro-manager.org/Micro-Manager_File_Formats
filterwarnings("ignore", message=r"*50839*", module="tifffile")
filterwarnings("ignore", message=r".*50839.*", module="tifffile")
self._parse_data()
self._store = None

Expand Down

0 comments on commit fa8fbc3

Please sign in to comment.