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
Is your feature request related to a problem? Please describe.
Generally, it's desirable to keep package dependencies as lean as possible. We use humanfriendly to parse a strings like "50b", "100kb", and "250mb" and convert them to integer values. We should be able to remove this dependency by implementing the parse_size() function in util.py (see here).
Describe the solution you'd like
An implementation of parse_size in util.py and corresponding tests in test_util.py.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Generally, it's desirable to keep package dependencies as lean as possible. We use
humanfriendly
to parse a strings like "50b", "100kb", and "250mb" and convert them to integer values. We should be able to remove this dependency by implementing theparse_size()
function inutil.py
(see here).Describe the solution you'd like
An implementation of
parse_size
inutil.py
and corresponding tests intest_util.py
.The text was updated successfully, but these errors were encountered: