Skip to content

Commit e9bb376

Browse files
committed
Satisfy black linting
1 parent 719cf89 commit e9bb376

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/galaxy/datatypes/text.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,9 @@ 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 segment_str.startswith('{') and all(x in segment_str for x in ["version", "meta", "updated", "panels"]):
745+
if segment_str.startswith("{") and all(
746+
x in segment_str for x in ["version", "meta", "updated", "panels"]
747+
):
746748
return True
747749
except Exception:
748750
pass

0 commit comments

Comments
 (0)