1
0
mirror of https://github.com/balkian/gists.git synced 2024-11-21 17:22:29 +00:00
gists/Check if key and value from template are present in indic/checkdic.py
J. Fernando Sánchez f48bab94dd Move files
2021-10-30 15:23:01 +02:00

3 lines
100 B
Python

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