Skip to content

Commit dd93f08

Browse files
committed
style: black
1 parent 8b77873 commit dd93f08

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pytensor/scalar/basic.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1142,7 +1142,9 @@ def output_types(self, types):
11421142

11431143
def perform(self, node, inputs, output_storage):
11441144
if self.nout == 1:
1145-
output_storage[0][0] = self.impl(*inputs).astype(node.outputs[0].dtype, copy=False)
1145+
output_storage[0][0] = self.impl(*inputs).astype(
1146+
node.outputs[0].dtype, copy=False
1147+
)
11461148
else:
11471149
variables = from_return_values(self.impl(*inputs))
11481150
assert len(variables) == len(output_storage)

0 commit comments

Comments
 (0)