-
-
Notifications
You must be signed in to change notification settings - Fork 965
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix:AttributeError:[#127] type object 'Translation' has no attribute … #128
fix:AttributeError:[#127] type object 'Translation' has no attribute … #128
Conversation
…'FREE_USER_LIMIT_Q_SZE'
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Worth considering. View full project report here.
) | ||
] | ||
) | ||
cb_string_file = "{}={}={}".format("file", format_id, format_ext) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
f-string is easier to read, write, and less computationally expensive than legacy string formatting. Read more.
] | ||
) | ||
cb_string_file = "{}={}={}".format("file", format_id, format_ext) | ||
cb_string_video = "{}={}={}".format("video", format_id, format_ext) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similarly, Consider using f-string instead.
callback_data=(cb_string_video).encode("UTF-8") | ||
) | ||
]) | ||
cb_string_file = "{}={}={}".format("file", "LFO", "NONE") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as above: Consider using f-string instead.
) | ||
]) | ||
cb_string_file = "{}={}={}".format("file", "LFO", "NONE") | ||
cb_string_video = "{}={}={}".format("video", "OFL", "ENON") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Again, Consider using f-string instead.
this time error changes when i try the second download: |
…'FREE_USER_LIMIT_Q_SZE'