From 80f049c6772422f27b302fb9a88e5cb71b2c14c0 Mon Sep 17 00:00:00 2001 From: Marc Mance Date: Thu, 30 May 2024 16:53:05 -0400 Subject: [PATCH] test --- topstat.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/topstat.py b/topstat.py index cf99913..c448e03 100644 --- a/topstat.py +++ b/topstat.py @@ -56,6 +56,8 @@ def convert_to_megabytes(data_size): Returns: int: Size of data in megabytes, or None if the format is invalid. """ + + breakpoint() try: size, unit = data_size.upper().split() size = float(size)