Travis build: 420

This commit is contained in:
30secondsofcode
2020-03-16 17:36:13 +00:00
parent e8adf5fd99
commit ae26af7aa7
2 changed files with 4 additions and 4 deletions

View File

@ -771,7 +771,7 @@
"attributes": { "attributes": {
"text": "Returns `True` if all the elements in `values` are included in `lst`, `False` otherwise.\n\nCheck if every value in `values` is contained in `lst` using a `for` loop, returning `False` if any one value is not found, `True` otherwise.\n\n", "text": "Returns `True` if all the elements in `values` are included in `lst`, `False` otherwise.\n\nCheck if every value in `values` is contained in `lst` using a `for` loop, returning `False` if any one value is not found, `True` otherwise.\n\n",
"tags": [ "tags": [
"utility", "list",
"intermediate" "intermediate"
] ]
}, },

View File

@ -1226,15 +1226,15 @@
"example": "includes_all([1, 2, 3, 4], [1, 4]) # True\r\nincludes_all([1, 2, 3, 4], [1, 5]) # False" "example": "includes_all([1, 2, 3, 4], [1, 4]) # True\r\nincludes_all([1, 2, 3, 4], [1, 5]) # False"
}, },
"tags": [ "tags": [
"utility", "list",
"intermediate" "intermediate"
] ]
}, },
"meta": { "meta": {
"hash": "dd6fe881dce1046713ff6fe1a9ee70cb3ff580b5b4f40a83f1cded8f1b2fc471", "hash": "dd6fe881dce1046713ff6fe1a9ee70cb3ff580b5b4f40a83f1cded8f1b2fc471",
"firstSeen": "1584269648", "firstSeen": "1584269648",
"lastUpdated": "1584269648", "lastUpdated": "1584380100",
"updateCount": 2, "updateCount": 3,
"authorCount": 2 "authorCount": 2
} }
}, },