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 9ab4dff commit 7e2cec0Copy full SHA for 7e2cec0
actions/lib/action.py
@@ -38,7 +38,7 @@ def make_request(self, endpoint_uri, http_action, **kwargs):
38
39
# transform `tags` if present
40
if kwargs.get("tags"):
41
- if http_action in ['post','put','patch']:
+ if http_action in ['post', 'put', 'patch']:
42
kwargs["tags"] = [{"slug": x} for x in kwargs["tags"]]
43
else:
44
kwargs["tags"] = ",".join(kwargs["tags"])
0 commit comments