Created
July 11, 2021 18:23
-
-
Save kuharan/268a5b545cfc91a6129cc8488aeca26d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def filter_specification(all_specifications): | |
filtered = [item for item in all_specifications if item['jobType'].lower()=='backup'] | |
return filtered | |
all_backup_specification = filter_specification(all_specifications) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment