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 1c5ba7b commit bf42927Copy full SHA for bf42927
test/test_cli/test_script.py
@@ -24,6 +24,8 @@ def tmp_dir_cleanup():
24
# download GitHub Gist dataset into tmp folder
25
GISTS_URL = "https://api.github.com/gists"
26
gists = requests.get(GISTS_URL).json()
27
+print(type(gists))
28
+print(gists)
29
for item in gists:
30
with (tmp_path / f"{item['id']}.gist").open("w") as f:
31
json.dump(item, f)
0 commit comments