File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -636,11 +636,11 @@ def deprecated(
636
636
else :
637
637
is_deprecated = True
638
638
elif current_version :
639
- current_version = version .parse (current_version )
639
+ current_version = version .parse (current_version ) # type: ignore
640
640
641
- if removed_in is not None and current_version >= version .parse (removed_in ):
641
+ if removed_in is not None and current_version >= version .parse (removed_in ): # type: ignore
642
642
is_unsupported = True
643
- elif deprecated_in is not None and current_version >= version .parse (deprecated_in ):
643
+ elif deprecated_in is not None and current_version >= version .parse (deprecated_in ): # type: ignore
644
644
is_deprecated = True
645
645
else :
646
646
# If we can't actually calculate that we're in a period of
You can’t perform that action at this time.
0 commit comments