We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91a16c9 commit ef1923aCopy full SHA for ef1923a
1 file changed
src/murfey/client/analyser.py
@@ -422,7 +422,15 @@ def _analyse(self, transferred_file: Path):
422
)
423
except Exception as e:
424
logger.error(f"Exception encountered: {e}")
425
- if "AtlasContext" not in str(self._context):
+ if any(
426
+ context in str(self._context)
427
+ for context in (
428
+ "SPAContext",
429
+ "SPAMetadataContext",
430
+ "TomographyContext",
431
+ "TomographyMetadataContext",
432
+ )
433
+ ):
434
if not dc_metadata:
435
try:
436
if self._context is not None:
0 commit comments