mirror of
https://github.com/dkmstr/openuds.git
synced 2025-03-13 08:58:35 +03:00
Small typing fix for openstack_client
This commit is contained in:
parent
9192a0a822
commit
2d48320ac8
@ -84,8 +84,8 @@ def getRecurringUrlJson(
|
||||
session: requests.Session,
|
||||
headers: typing.Dict[str, str],
|
||||
key: str,
|
||||
params: typing.Dict[str, str] = None,
|
||||
errMsg: str = None,
|
||||
params: typing.Optional[typing.Mapping[str, str]] = None,
|
||||
errMsg: typing.Optional[str] = None,
|
||||
timeout: int = 10,
|
||||
) -> typing.Iterable[typing.Any]:
|
||||
counter = 0
|
||||
@ -133,7 +133,6 @@ def authProjectRequired(func: typing.Callable[..., RT]) -> typing.Callable[...,
|
||||
|
||||
return ensurer
|
||||
|
||||
|
||||
class Client: # pylint: disable=too-many-public-methods
|
||||
PUBLIC = 'public'
|
||||
PRIVATE = 'private'
|
||||
|
Loading…
x
Reference in New Issue
Block a user