1
0
mirror of https://github.com/balkian/gists.git synced 2024-11-23 18:02:29 +00:00
gists/repos/Check if key and value from template are present in indic/checkdic.py
2021-10-30 15:16:04 +02:00

3 lines
100 B
Python

def check_dict(indic, template):
return all(item in indic.items() for item in template.items())