rename _is_jwt_token_expired to _jwt_is_expired

This commit is contained in:
Michaël De Boey
2025-03-16 23:18:31 +01:00
parent 0242090a86
commit 5ffedda327
11 changed files with 20 additions and 20 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ class IwaraBaseIE(InfoExtractor):
def _is_token_expired(self, token, token_type):
# User token TTL == ~3 weeks, Media token TTL == ~1 hour
if self._is_jwt_token_expired(token):
if self._jwt_is_expired(token):
self.to_screen(f'{token_type} token has expired')
return True