def convert_size_to_kb()

in memory_statistics/memory_statistics.py [0:0]


def convert_size_to_kb(byte_size):
    kb_size = round(byte_size/1024,1)
    if (kb_size == 0.0):
        return 0.1
    else:
        return kb_size