Skip to content

Commit 9345179

Browse files
FilippoOlivodario-coscia
authored andcommitted
Black formatting collector
1 parent cbc9447 commit 9345179

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pina/collector.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88

99
class Collector:
1010
"""
11-
Collector class for retrieving data from different conditions in the
11+
Collector class for retrieving data from different conditions in the
1212
problem.
1313
"""
1414

1515
def __init__(self, problem):
1616
"""
1717
Initialize the Collector class, by creating a hook between the collector
18-
and the problem and initializing the data collections (dictionary where
18+
and the problem and initializing the data collections (dictionary where
1919
data will be stored).
2020
2121
:param AbstractProblem problem: The problem to collect data from.
@@ -114,7 +114,7 @@ def store_sample_domains(self):
114114
Store inside data collections the sampled data of the problem. These
115115
comes from the conditions that require sampling.
116116
"""
117-
117+
118118
for condition_name in self.problem.conditions:
119119
condition = self.problem.conditions[condition_name]
120120
if not hasattr(condition, "domain"):

0 commit comments

Comments
 (0)