We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bff8f10 commit e620f12Copy full SHA for e620f12
docs/user/transition.rst
@@ -55,7 +55,10 @@ script to help with the transition:
55
for snip in snippets:
56
if not('tags' in snip):
57
snip["tags"] = []
58
- print(snip, end=",\n")
+ if snippets.index(snip) == len(snippets)-1:
59
+ print(snip)
60
+ else:
61
+ print(snip, end=",\n")
62
63
64
This script will concatenate and print out all of the json objects in a /snippets folder
0 commit comments