Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pytiktok/business_account_api.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Core API impl.
Core API impl.
"""

import json
Expand Down Expand Up @@ -277,7 +277,7 @@ def get_account_videos(
if fields is not None:
params["fields"] = self._format_fields(fields)
if filters is not None:
params["filters"] = filters
params["filters"] = self._format_fields(filters)
if cursor is not None:
params["cursor"] = cursor
if max_count is not None:
Expand Down Expand Up @@ -432,7 +432,7 @@ def get_video_comments(
"""
params = {"business_id": business_id, "video_id": video_id}
if comment_ids is not None:
params["comment_ids"] = comment_ids
params["comment_ids"] = self._format_fields(comment_ids)
if include_replies is not None:
params["include_replies"] = include_replies
if status is not None:
Expand Down
2 changes: 1 addition & 1 deletion pytiktok/kit_api.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Api impl for tiktok developer
Api impl for tiktok developer
"""

import random
Expand Down
2 changes: 1 addition & 1 deletion pytiktok/models/business_account.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Models for business account.
Models for business account.
"""

from dataclasses import dataclass, field
Expand Down
2 changes: 1 addition & 1 deletion pytiktok/models/kit.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Models for TikTok kit api.
Models for TikTok kit api.
"""

from dataclasses import dataclass, field
Expand Down
2 changes: 1 addition & 1 deletion tests/business_account_apis/test_access_token.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Tests for the access token API
Tests for the access token API
"""

import pytest
Expand Down
Loading