mirror of
https://github.com/balkian/gists.git
synced 2024-10-31 23:51:44 +00:00
3 lines
100 B
Python
3 lines
100 B
Python
def check_dict(indic, template):
|
|
return all(item in indic.items() for item in template.items())
|