Skip to content

Commit 75ad865

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 97695ae commit 75ad865

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/lightning/pytorch/trainer/trainer.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -913,7 +913,14 @@ def predict(
913913
self.state.status = TrainerStatus.RUNNING
914914
self.predicting = True
915915
return call._call_and_handle_interrupt(
916-
self, self._predict_impl, model, dataloaders, datamodule, return_predictions, ckpt_path, weights_only=weights_only
916+
self,
917+
self._predict_impl,
918+
model,
919+
dataloaders,
920+
datamodule,
921+
return_predictions,
922+
ckpt_path,
923+
weights_only=weights_only,
917924
)
918925

919926
def _predict_impl(

0 commit comments

Comments
 (0)