From 6f8c66cdfaa5977a871e9c8f356d2d40646afec3 Mon Sep 17 00:00:00 2001 From: "Antoine R. Dumont (@ardumont)" <antoine.romain.dumont@gmail.com> Date: Fri, 10 Apr 2020 10:43:04 +0200 Subject: [PATCH] model: Black formatting --- swh/model/model.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swh/model/model.py b/swh/model/model.py index 2814fd6b..599b06c2 100644 --- a/swh/model/model.py +++ b/swh/model/model.py @@ -324,7 +324,7 @@ class Snapshot(BaseModel, HashableObject): name: SnapshotBranch.from_dict(branch) if branch else None for (name, branch) in d.pop("branches").items() }, - **d + **d, ) @@ -419,7 +419,7 @@ class Revision(BaseModel, HashableObject): date=date, committer_date=committer_date, type=RevisionType(d.pop("type")), - **d + **d, ) -- GitLab