Skip to content

Commit 8e4514e

Browse files
authored
Remove a bool type assignment in lr_finder.py (#13652)
1 parent 3d6f680 commit 8e4514e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pytorch_lightning/tuner/lr_finder.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
else:
4040
from tqdm import tqdm
4141

42-
_MATPLOTLIB_AVAILABLE: bool = _RequirementAvailable("matplotlib") # type: ignore[assignment]
42+
_MATPLOTLIB_AVAILABLE = _RequirementAvailable("matplotlib")
4343
if _MATPLOTLIB_AVAILABLE and TYPE_CHECKING:
4444
import matplotlib.pyplot as plt
4545

0 commit comments

Comments
 (0)