AMUseBot/src/utils/helpers.py

8 lines
200 B
Python
Raw Normal View History

2023-03-02 15:32:39 +01:00
from typing import Any, Dict, List, Optional
def get_dict_key(dictionary: Dict, value: Any) -> Optional[Any]:
for key, val in dictionary.items():
if val == value:
return key