Commit e9bb3767 authored by Peter van Heusden's avatar Peter van Heusden
Browse files

Satisfy black linting

parent 719cf891
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -742,7 +742,9 @@ class AuspiceJson(Json):
            with open(file_prefix.filename) as fh:
                segment_str = fh.read(load_size)

                if segment_str.startswith('{') and all(x in segment_str for x in ["version", "meta", "updated", "panels"]):
                if segment_str.startswith("{") and all(
                    x in segment_str for x in ["version", "meta", "updated", "panels"]
                ):
                    return True
        except Exception:
            pass