Skip to content

Commit 06de33b

Browse files
committed
fix: Ammended typing
1 parent 6c3dfc7 commit 06de33b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lightning/pytorch/loggers/mlflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def __init__(
142142
self.tags = tags
143143
self._log_model = log_model
144144
self._logged_model_time: dict[str, float] = {}
145-
self._checkpoint_callbacks: list[ModelCheckpoint] = []
145+
self._checkpoint_callbacks: Optional[list[ModelCheckpoint]] = []
146146
self._prefix = prefix
147147
self._artifact_location = artifact_location
148148
self._log_batch_kwargs = {} if synchronous is None else {"synchronous": synchronous}

0 commit comments

Comments
 (0)