Skip to content

Commit

Permalink
Merge pull request bellingcat#30 from bellingcat/change-default-limit
Browse files Browse the repository at this point in the history
Reduce video limit to avoid error
  • Loading branch information
trislee authored Mar 11, 2024
2 parents 18e2c4d + 3f4fd26 commit 2a4af67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tiktok_hashtag_analysis/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def create_parser():
"--limit",
type=int,
help="Maximum number of videos to download for each hashtag",
default=1000,
default=35,
)
parser.add_argument(
"-v",
Expand Down
2 changes: 1 addition & 1 deletion tiktok_hashtag_analysis/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
_MINOR = "0"
# On main and in a nightly release the patch should be one ahead of the last
# released build.
_PATCH = "3"
_PATCH = "4"
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
# https://semver.org/#is-v123-a-semantic-version for the semantics.
_SUFFIX = ""
Expand Down

0 comments on commit 2a4af67

Please sign in to comment.