From ac42513da92d86b18d8f7d84ae24bec1eef2361d Mon Sep 17 00:00:00 2001 From: Ryan Dick Date: Thu, 11 Jan 2024 12:11:35 -0500 Subject: [PATCH] Remove unused reset_all_stats(...). --- .../app/services/invocation_stats/invocation_stats_default.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/invokeai/app/services/invocation_stats/invocation_stats_default.py b/invokeai/app/services/invocation_stats/invocation_stats_default.py index 35d27281dd..7e89e67e5e 100644 --- a/invokeai/app/services/invocation_stats/invocation_stats_default.py +++ b/invokeai/app/services/invocation_stats/invocation_stats_default.py @@ -59,10 +59,6 @@ class InvocationStatsService(InvocationStatsServiceBase): ) self._stats[graph_execution_state_id].add_node_execution_stats(node_stats) - def reset_all_stats(self): - """Zero all statistics""" - self._stats = {} - def reset_stats(self, graph_execution_id: str): try: self._stats.pop(graph_execution_id)