You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a bug in the validate_data method of the DownloadWorker class in downloader/__init__.py. The hash_function is being used incorrectly as a callable, which results in a TypeError. The hash_function is an instance and should use its update method instead.
There is a bug in the
validate_data
method of theDownloadWorker
class indownloader/__init__.py
. Thehash_function
is being used incorrectly as a callable, which results in aTypeError
. Thehash_function
is an instance and should use itsupdate
method instead.Suggested fix
Environment
The text was updated successfully, but these errors were encountered: