Spaces:
Running
Running
Commit
·
3267828
1
Parent(s):
ad9559e
Remove redundant return statement in test function
Browse files- post_blog.py +1 -3
post_blog.py
CHANGED
@@ -177,6 +177,4 @@ def test(access_key):
|
|
177 |
access_key = access_key
|
178 |
status = post_blog(title, category, summary, mindmap, citation, access_key)
|
179 |
print(status)
|
180 |
-
return status
|
181 |
-
|
182 |
-
test(access_key)
|
|
|
177 |
access_key = access_key
|
178 |
status = post_blog(title, category, summary, mindmap, citation, access_key)
|
179 |
print(status)
|
180 |
+
return status
|
|
|
|