diff --git a/swh/provenance/swhgraph/archive.py b/swh/provenance/swhgraph/archive.py --- a/swh/provenance/swhgraph/archive.py +++ b/swh/provenance/swhgraph/archive.py @@ -29,7 +29,9 @@ src = CoreSWHID(object_type=ObjectType.REVISION, object_id=id) request = self.graph.neighbors(str(src), edges="rev:rev", return_types="rev") - yield from (CoreSWHID.from_string(swhid).object_id for swhid in request if swhid) + yield from ( + CoreSWHID.from_string(swhid).object_id for swhid in request if swhid + ) @statsd.timed(metric=ARCHIVE_DURATION_METRIC, tags={"method": "snapshot_get_heads"}) def snapshot_get_heads(self, id: Sha1Git) -> Iterable[Sha1Git]: @@ -38,4 +40,6 @@ str(src), edges="snp:rev,snp:rel,rel:rev", return_types="rev" ) - yield from (CoreSWHID.from_string(swhid).object_id for swhid in request if swhid) + yield from ( + CoreSWHID.from_string(swhid).object_id for swhid in request if swhid + )