From 33f2cd5dd5087c25cd4d78cd60f394adb9eb545e Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 16 Aug 2023 17:24:13 +0300 Subject: [PATCH] Rename memusage.read_report to load_report --- platformio/home/rpc/handlers/memusage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio/home/rpc/handlers/memusage.py b/platformio/home/rpc/handlers/memusage.py index 091ad88a..23a1af1c 100644 --- a/platformio/home/rpc/handlers/memusage.py +++ b/platformio/home/rpc/handlers/memusage.py @@ -37,7 +37,7 @@ class MemUsageRPC(BaseRPCHandler): return memusage.list_reports(report_dir)[-1] @staticmethod - def read_report(path): + def load_report(path): return memusage.read_report(path) def summary(self, report_path):