Black formatting

This commit is contained in:
FilippoOlivo
2025-03-12 14:51:26 +01:00
committed by Nicola Demo
parent f587c3bf65
commit dc5c5c2187
2 changed files with 3 additions and 3 deletions

View File

@@ -18,7 +18,7 @@ class Collector:
and the problem and initializing the data collections (dictionary where
data will be stored).
:param pina.problem.abstract_problem.AbstractProblem problem: The
:param pina.problem.abstract_problem.AbstractProblem problem: The
problem to collect data from.
"""
# creating a hook between collector and problem
@@ -81,7 +81,7 @@ class Collector:
"""
Set the problem connected to the collector.
:param pina.problem.abstract_problem.AbstractProblem value: The problem
:param pina.problem.abstract_problem.AbstractProblem value: The problem
to connect to the collector.
"""

View File

@@ -62,7 +62,7 @@ class InputEquationCondition(ConditionInterface):
Initialize the InputEquationCondition by storing the input and equation.
:param input: Input data for the condition.
:type input: pina.label_tensor.LabelTensor | pina.graph.Graph |
:type input: pina.label_tensor.LabelTensor | pina.graph.Graph |
list[pina.graph.Graph] | tuple[pina.graph.Graph]
:param EquationInterface equation: Equation object containing the
equation function.