Skip to content

Commit e194891

Browse files
authored
Fix mypy issue with wandb.finish() (#3283)
1 parent 680ac7f commit e194891

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: ignite/handlers/wandb_logger.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def __getattr__(self, attr: Any) -> Any:
141141
return getattr(self._wandb, attr)
142142

143143
def close(self) -> None:
144-
self._wandb.finish() # type: ignore[attr-defined]
144+
self._wandb.finish()
145145

146146
def _create_output_handler(self, *args: Any, **kwargs: Any) -> "OutputHandler":
147147
return OutputHandler(*args, **kwargs)

0 commit comments

Comments
 (0)