Skip to content

Commit

Permalink
style(black): 🎨 format code
Browse files Browse the repository at this point in the history
  • Loading branch information
MerleLiuKun committed Mar 1, 2024
1 parent 9c9e0b2 commit 3b20db6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
12 changes: 9 additions & 3 deletions pytiktok/business_account_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,9 @@ def get_comment_replies(
if max_count is not None:
params["max_count"] = max_count

resp = self._request(verb="GET", path="business/comment/reply/list/", params=params)
resp = self._request(
verb="GET", path="business/comment/reply/list/", params=params
)
data = self.parse_response(resp)
return (
data
Expand Down Expand Up @@ -443,7 +445,9 @@ def create_reply(
"text": text,
}

resp = self._request(verb="POST", path="business/comment/reply/create/", json=data)
resp = self._request(
verb="POST", path="business/comment/reply/create/", json=data
)
data = self.parse_response(resp)
return (
data
Expand Down Expand Up @@ -572,7 +576,9 @@ def get_hashtag_suggestions(
"keyword": keyword,
"language": language,
}
resp = self._request(verb="GET", path="business/hashtag/suggestion/", params=data)
resp = self._request(
verb="GET", path="business/hashtag/suggestion/", params=data
)
data = self.parse_response(resp)
return (
data
Expand Down
1 change: 1 addition & 0 deletions pytiktok/kit_api.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Api impl for tiktok developer
"""

import random
import string
from typing import Optional, List, Tuple, Union, IO
Expand Down
1 change: 1 addition & 0 deletions pytiktok/models/kit.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Models for TikTok kit api.
"""

from dataclasses import dataclass, field
from typing import Optional, List

Expand Down

0 comments on commit 3b20db6

Please sign in to comment.