This commit is contained in:
Marc Mance
2024-05-30 16:59:18 -04:00
parent e5d75c0994
commit a25b81df22

View File

@@ -57,7 +57,6 @@ def convert_to_megabytes(data_size):
int: Size of data in megabytes, or None if the format is invalid. int: Size of data in megabytes, or None if the format is invalid.
""" """
breakpoint()
try: try:
unit = data_size[-1].upper() unit = data_size[-1].upper()
size = data_size[:-1] size = data_size[:-1]