Skip to content

Commit

Permalink
Update type stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
BMeu committed Sep 30, 2019
1 parent 21a8b4b commit a065447
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion stubs/flask_easyjwt/flask_easyjwt.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.

from datetime import datetime
from datetime import datetime, timedelta
from easyjwt import EasyJWT
from typing import Any, Iterable, Optional, Type, TypeVar, Union

Expand All @@ -14,3 +14,5 @@ class FlaskEasyJWT(EasyJWT):
def create(self, issued_at: Optional[datetime]=...) -> str: ...
@classmethod
def verify(cls: Type[FlaskEasyJWTClass], token: str, key: Optional[str]=..., issuer: Optional[str]=..., audience: Optional[Union[Iterable[str], str]]=...) -> FlaskEasyJWTClass: ...
@staticmethod
def get_validity() -> Optional[timedelta]: ...

0 comments on commit a065447

Please sign in to comment.