feat: add clean method

This commit is contained in:
2025-11-07 18:12:53 +01:00
parent d68e836b57
commit 5b906a7708

View File

@@ -81,6 +81,9 @@ def is_404(url):
class RequestProfiler:
data = []
def clear(self):
self.data = []
def add_status(self, status):
self.data.append((time.time(), status))