added videos

This commit is contained in:
Tom Schimansky
2022-11-29 23:27:54 +01:00
parent 03249110f3
commit 39b71f6bf9
5 changed files with 2 additions and 3 deletions

View File

@ -1,5 +1,5 @@
def pop_from_dict_by_set(dictionary: dict, valid_keys: set):
def pop_from_dict_by_set(dictionary: dict, valid_keys: set) -> dict:
""" remove and create new dict with key value pairs of dictionary, where key is in valid_keys """
new_dictionary = {}