Revoke tests account in fixed mode, cleanup

This commit is contained in:
allegroai 2021-05-03 17:40:41 +03:00
parent 26bda01a28
commit 1b49da8748
3 changed files with 3 additions and 3 deletions

View File

@ -28,6 +28,7 @@
display_name: "Default User"
user_key: "EGRTCO8JMSIGI6S39GTP43NFWXDQOW"
user_secret: "x!XTov_G-#vspE*Y(h$Anm&DIc5Ou-F)jsl$PdOyj5wG1&E!Z8"
revoke_in_fixed_mode: true
}
}
}

View File

@ -1 +0,0 @@
parameterized

View File

@ -1,4 +1,4 @@
from typing import Sequence, Tuple, Any, Union, Callable, Optional
from typing import Sequence, Tuple, Any, Union, Callable, Optional, Mapping
def flatten_nested_items(
@ -36,7 +36,7 @@ def deep_merge(source: dict, override: dict) -> dict:
def nested_get(
dictionary: dict,
dictionary: Mapping,
path: Union[Sequence[str], str],
default: Optional[Union[Any, Callable]] = None,
) -> Any: