Skip to content
Snippets Groups Projects
Commit f2265631 authored by Hervé  MENAGER's avatar Hervé MENAGER
Browse files

make flake8+black happy :)

parent 2935a6fa
No related branches found
No related tags found
No related merge requests found
Pipeline #32999 passed
......@@ -1280,7 +1280,9 @@ class CompoundActivityResult(models.Model):
@property
def ref(self):
return RefCompoundBiblio.objects.get(compound=self.compound, bibliography=self.test_activity_description.biblio)
return RefCompoundBiblio.objects.get(
compound=self.compound, bibliography=self.test_activity_description.biblio
)
class TestCytotoxDescription(models.Model):
......@@ -1321,7 +1323,10 @@ class CompoundCytotoxicityResult(models.Model):
@property
def ref(self):
return RefCompoundBiblio.objects.get(compound=self.compound, bibliography=self.test_cytotoxicity_description.biblio)
return RefCompoundBiblio.objects.get(
compound=self.compound,
bibliography=self.test_cytotoxicity_description.biblio,
)
class TestPKDescription(models.Model):
......@@ -1384,7 +1389,9 @@ class CompoundPKResult(models.Model):
@property
def ref(self):
return RefCompoundBiblio.objects.get(compound=self.compound, bibliography=self.test_pk_description.biblio)
return RefCompoundBiblio.objects.get(
compound=self.compound, bibliography=self.test_pk_description.biblio
)
class CompoundAction(models.Model):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment