From 7e384da533d945673e9787b7c01730562247b24e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Herv=C3=A9=20M=C3=A9nager?= <herve.menager@pasteur.fr>
Date: Sun, 3 May 2020 22:12:58 +0200
Subject: [PATCH] reformat ippidb.models with black

---
 ippisite/ippidb/models.py | 12 +++---------
 1 file changed, 3 insertions(+), 9 deletions(-)

diff --git a/ippisite/ippidb/models.py b/ippisite/ippidb/models.py
index 5752f2b5..04428543 100644
--- a/ippisite/ippidb/models.py
+++ b/ippisite/ippidb/models.py
@@ -1312,15 +1312,9 @@ class CompoundPKResult(models.Model):
     t_demi = models.IntegerField("t½ (mn)", blank=True, null=True)
     t_max = models.IntegerField("tmax (mn)", blank=True, null=True)
     auc_av = models.BooleanField("Area under curve available")
-    clearance_av = models.BooleanField(
-        "Clearance available"
-    )
-    c_max_av = models.BooleanField(
-        "Maximal concentration available"
-    )
-    voldistribution_av = models.BooleanField(
-        "Volume distribution (Vd) available"
-    )
+    clearance_av = models.BooleanField("Clearance available")
+    c_max_av = models.BooleanField("Maximal concentration available")
+    voldistribution_av = models.BooleanField("Volume distribution (Vd) available")
 
     class Meta:
         unique_together = (("compound", "test_pk_description"),)
-- 
GitLab