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
in roles.py
def remove_permissions(self, id: str, permissions: List[str]) -> Any: def add_permissions(self, id: str, permissions: List[str]) -> dict[str, Any]:
type annotation should be
permissions: List[dict[str, str]]
this is a development time type checking problem
No response
4.5.0
3.11
The text was updated successfully, but these errors were encountered:
Update roles.py
952dfe1
fixes #545 Signed-off-by: Adam Mcgrath <[email protected]>
Hi @gitwouter - thanks for raising this, created #546 to fix
auth0-python version 4.5.0
Out of curiosity - how are you using the types? My understanding is we're not publishing them since #521
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Checklist
Description
in roles.py
def remove_permissions(self, id: str, permissions: List[str]) -> Any:
def add_permissions(self, id: str, permissions: List[str]) -> dict[str, Any]:
type annotation should be
permissions: List[dict[str, str]]
Reproduction
this is a development time type checking problem
Additional context
No response
auth0-python version
4.5.0
Python version
3.11
The text was updated successfully, but these errors were encountered: