-
Notifications
You must be signed in to change notification settings - Fork 3
Imports in __init__.py #8
base: develop
Are you sure you want to change the base?
Conversation
src/aiokeycloak/__init__.py
Outdated
@@ -0,0 +1,4 @@ | |||
from .client import KeycloakClient | |||
from .factory import KeycloakClientFactory | |||
from .errors import KeycloakError, UnauthorizedError, UserExistsError |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
py from .errors import KeycloakError, UnauthorizedError, UserExistsError
It's unnecessary
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add __all__
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I has modify by your request on branch develop 483fa3f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is no need for imports here
src/aiokeycloak/types/__init__.py
Outdated
@@ -0,0 +1,24 @@ | |||
import access_token |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What kind of import?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I has modify kind of import access_token 3eea470
__all__ = [ | ||
'KeycloakClient', | ||
'KeycloakClientFactory', | ||
] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I has modify __all__
and delete errors
@@ -0,0 +1 @@ | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I has changed
src/aiokeycloak/types/__init__.py
Outdated
AccessTokenCertConf, | ||
AccessTokenAccess, | ||
AccessToken, | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I has modify kind of import access_token
fix ruff and mypy, please |
write in console |
merge your branch with my develop. I added a config for ruff |
No description provided.