From 8122367bf709602759bfe300f7fd5fea675ae9d3 Mon Sep 17 00:00:00 2001 From: 30secondsofcode <30secondsofcode@gmail.com> Date: Wed, 25 Dec 2019 18:20:42 +0000 Subject: [PATCH] Travis build: 276 --- snippet_data/snippetList.json | 2 +- snippet_data/snippets.json | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/snippet_data/snippetList.json b/snippet_data/snippetList.json index 62922d20e..98a881722 100644 --- a/snippet_data/snippetList.json +++ b/snippet_data/snippetList.json @@ -1064,7 +1064,7 @@ ] }, "meta": { - "hash": "48a3b8088d5537954312dd41a8bbdbf56f6d04c9a2f7f594bbb93822efc3a0aa" + "hash": "1131fdad586899d61d591900e8d5308727834ed332384c7b7f90726ee8cdb1c5" } }, { diff --git a/snippet_data/snippets.json b/snippet_data/snippets.json index ed70598f0..b14fbf829 100644 --- a/snippet_data/snippets.json +++ b/snippet_data/snippets.json @@ -1673,7 +1673,7 @@ "text": "Splits a multiline string into a list of lines.\n\nUse `s.split()` and `'\\n'` to match line breaks and create a list.\n\n", "codeBlocks": { "code": "def split_lines(s):\n return s.split('\\n')", - "example": "split_lines('This\\nis a\\nmultiline\\nstring.\\n') # 'This\\nis a\\nmultiline\\nstring.\\n'" + "example": "split_lines('This\\nis a\\nmultiline\\nstring.\\n') # ['This', 'is a', 'multiline', 'string.' , '']" }, "tags": [ "string", @@ -1681,10 +1681,10 @@ ] }, "meta": { - "hash": "48a3b8088d5537954312dd41a8bbdbf56f6d04c9a2f7f594bbb93822efc3a0aa", + "hash": "1131fdad586899d61d591900e8d5308727834ed332384c7b7f90726ee8cdb1c5", "firstSeen": "1566306915", - "lastUpdated": "1570502638", - "updateCount": 5, + "lastUpdated": "1577297977", + "updateCount": 6, "authorCount": 4 } },