Skip to content

Commit d415fd4

Browse files
committed
Add "panels" as required key for AuspiceJSON
1 parent a237237 commit d415fd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/galaxy/datatypes/text.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ def _looks_like_is_auspicejson(self, file_prefix: FilePrefix, load_size: int = 2
742742
with open(file_prefix.filename) as fh:
743743
segment_str = fh.read(load_size)
744744

745-
if all(x in segment_str for x in ["version", "meta", "updated"]):
745+
if all(x in segment_str for x in ["version", "meta", "updated", "panels"]):
746746
return True
747747
except Exception:
748748
pass

0 commit comments

Comments
 (0)