Skip to content

Commit

Permalink
changes werenot staged for commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ArturoLlorente committed Oct 3, 2023
1 parent 4f04ffc commit 919b678
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/graphnet/models/standard_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ def configure_optimizers(self) -> Dict[str, Any]:
)
return config

def forward(self, data: Union[Data, List[Data]]) -> List[Union[Tensor, Data]]:
def forward(
self, data: Union[Data, List[Data]]
) -> List[Union[Tensor, Data]]:
"""Forward pass, chaining model components."""
if isinstance(data, Data):
data = [data]
Expand Down

0 comments on commit 919b678

Please sign in to comment.