Skip to content
Snippets Groups Projects

#286: Fix Black format with its last version

Merged Moul requested to merge 286_ci_black_pip into dev
1 file
+ 4
3
Compare changes
  • Side-by-side
  • Inline
+ 4
3
@@ -78,9 +78,10 @@ async def received_sent_certifications(id):
certifications["received"].append(
cert_written_in_the_blockchain(req["certifications"], cert)
)
certifications["sent"], certifications[
"sent_expire"
] = get_sent_certifications(id_certs, time_first_block, params)
(
certifications["sent"],
certifications["sent_expire"],
) = get_sent_certifications(id_certs, time_first_block, params)
nbr_sent_certs = (
len(certifications["sent"]) if "sent" in certifications else 0
)
Loading