From dc0e43eb89e18163f8c34ecd536f2725a89ed5a7 Mon Sep 17 00:00:00 2001 From: Landon Date: Fri, 27 Dec 2024 16:21:33 -0700 Subject: [PATCH] removed unused arg --- app/api/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/tasks.py b/app/api/tasks.py index 33f986b..466060d 100644 --- a/app/api/tasks.py +++ b/app/api/tasks.py @@ -2436,7 +2436,7 @@ def reset_account_usage(account_id: str=None) -> None: f = '%Y-%m-%d %H:%M:%S.%f' # reset account.usage - def reset_usage(account, timestamp) -> None: + def reset_usage(account) -> None: # update usage account.usage['scans'] = 0 account.usage['tests'] = 0