Skip to content

Commit

Permalink
style: black
Browse files Browse the repository at this point in the history
  • Loading branch information
ferrine committed Aug 13, 2024
1 parent 8b77873 commit dd93f08
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pytensor/scalar/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -1142,7 +1142,9 @@ def output_types(self, types):

def perform(self, node, inputs, output_storage):
if self.nout == 1:
output_storage[0][0] = self.impl(*inputs).astype(node.outputs[0].dtype, copy=False)
output_storage[0][0] = self.impl(*inputs).astype(
node.outputs[0].dtype, copy=False
)
else:
variables = from_return_values(self.impl(*inputs))
assert len(variables) == len(output_storage)
Expand Down

0 comments on commit dd93f08

Please sign in to comment.