Skip to content

Commit 7e2cec0

Browse files
authored
Update action.py
liniting
1 parent 9ab4dff commit 7e2cec0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

actions/lib/action.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def make_request(self, endpoint_uri, http_action, **kwargs):
3838

3939
# transform `tags` if present
4040
if kwargs.get("tags"):
41-
if http_action in ['post','put','patch']:
41+
if http_action in ['post', 'put', 'patch']:
4242
kwargs["tags"] = [{"slug": x} for x in kwargs["tags"]]
4343
else:
4444
kwargs["tags"] = ",".join(kwargs["tags"])

0 commit comments

Comments
 (0)