Skip to content
Snippets Groups Projects
Commit 3b341744 authored by Adam Edward Barton's avatar Adam Edward Barton
Browse files

Merge branch 'main-maszyman-update-md-validation' into 'main'

Updates to checkMetadata.py

See merge request atlas/athena!70717
parents d9a9f622 39d3f66c
No related branches found
No related tags found
No related merge requests found
......@@ -119,7 +119,7 @@ def validateInputMetadata(infile):
if (
"data_year" in tag_info
and isinstance(tag_info["data_year"], list)
and set(tag_info["data_year"]) > 1
and len(set(tag_info["data_year"])) > 1
):
logging.error("/TagInfo contains values from different data taking periods")
return 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment