Skip to content

Commit d9df08a

Browse files
author
oerc0042
committed
fixing linting issues
1 parent 9e5539d commit d9df08a

1 file changed

Lines changed: 15 additions & 15 deletions

File tree

isatools/create/model.py

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ def __repr__(self):
254254

255255
def __str__(self):
256256
return """"{0}
257-
(type={1},
257+
(type={1},
258258
factor_values={2})
259259
""".format(self.__class__.__name__, self.type, sorted(self.factor_values, key=lambda x: repr(x)))
260260

@@ -327,8 +327,8 @@ def __repr__(self):
327327

328328
def __str__(self):
329329
return """{0}(
330-
name={name},
331-
elements={elements_count} items,
330+
name={name},
331+
elements={elements_count} items,
332332
)""".format(self.__class__.__name__, name=self.name, elements_count=len(self.elements))
333333

334334
def __hash__(self):
@@ -799,12 +799,12 @@ def __repr__(self):
799799

800800
def __str__(self):
801801
return """{0}(
802-
id={1.id},
803-
name={1.name},
804-
protocol_type={1.protocol_type},
805-
uri={1.uri},
806-
description={1.description},
807-
version={1.version},
802+
id={1.id},
803+
name={1.name},
804+
protocol_type={1.protocol_type},
805+
uri={1.uri},
806+
description={1.description},
807+
version={1.version},
808808
parameter_values={1.parameter_values})
809809
""".format(self.__class__.__name__, self)
810810

@@ -1011,7 +1011,7 @@ def __repr__(self):
10111011
def __str__(self):
10121012
return """{0}(
10131013
pre_run_sample_type={1}
1014-
post_run_sample_type={2}
1014+
post_run_sample_type={2}
10151015
interspersed_sample_types={3}
10161016
)""".format(
10171017
self.__class__.__name__,
@@ -1410,9 +1410,9 @@ def __str__(self):
14101410
links = [(start_node.id, end_node.id) for start_node, end_node in self.links]
14111411
return """"{0}(
14121412
id={1.id}
1413-
measurement_type={1.measurement_type}
1413+
measurement_type={1.measurement_type}
14141414
technology_type={1.technology_type}
1415-
nodes={1.nodes}
1415+
nodes={1.nodes}
14161416
links={2}
14171417
)""".format(self.__class__.__name__, self, sorted(links, key=lambda link: (link[0], link[1])))
14181418

@@ -1604,7 +1604,7 @@ def __repr__(self):
16041604
def __str__(self):
16051605
return """{0}(
16061606
name={1.name},
1607-
sample_plan={1.sample_plan},
1607+
sample_plan={1.sample_plan},
16081608
assay_plan={1.assay_plan}
16091609
)""".format(self.__class__.__name__, self)
16101610

@@ -1848,7 +1848,7 @@ def __str__(self):
18481848
return """{0}(
18491849
name={name},
18501850
source_type={source_type},
1851-
group_size={group_size},
1851+
group_size={group_size},
18521852
no. cells={cells},
18531853
no. sample_assay_plans={sample_assay_plans}
18541854
)""".format(
@@ -2773,7 +2773,7 @@ def __repr__(self):
27732773

27742774
def __str__(self):
27752775
return """{0}(
2776-
identifier={identifier},
2776+
identifier={identifier},
27772777
name={name},
27782778
description={description},
27792779
study_arms={study_arms}

0 commit comments

Comments
 (0)