We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
authlib\oauth2\rfc7523\token.py
def generate(self, grant_type, client, user=None, scope=None, expires_in=None): if not expires_in: expires_in = self.DEFAULT_EXPIRES_IN
it should be:
def generate(self, grant_type, client, user=None, scope=None, expires_in=None): if expires_in is None: expires_in = self.DEFAULT_EXPIRES_IN
The text was updated successfully, but these errors were encountered:
a0c85f4
Merge pull request #608 from danilovmy/master
4a41288
fix #607
lepture
No branches or pull requests
authlib\oauth2\rfc7523\token.py
it should be:
The text was updated successfully, but these errors were encountered: