used pass instead of break to avoid #380

pull/280/head
iaacornus 3 years ago
parent ed448130f1
commit 6d128a79fb
No known key found for this signature in database
GPG Key ID: 281739AE7252598C

@ -39,7 +39,8 @@ def save_text_to_mp3(reddit_obj):
# ! Stop creating mp3 files if the length is greater than 50 seconds.
# ! This can be longer, but this is just a good starting point
if length > 50:
break
pass
comment = comment["comment_body"]
text = re.sub(
"((http|https)\:\/\/)?[a-zA-Z0-9\.\/\?\:@\-_=#]+"

Loading…
Cancel
Save