From fca580505c70071e07be7f9dbb49960f8b9450d5 Mon Sep 17 00:00:00 2001 From: Ozzie Isaacs Date: Wed, 15 Apr 2026 20:31:40 +0200 Subject: [PATCH] Fix typo --- cps/config_sql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cps/config_sql.py b/cps/config_sql.py index c64addfb1..7638afcce 100644 --- a/cps/config_sql.py +++ b/cps/config_sql.py @@ -328,7 +328,7 @@ class ConfigSQL(object): for k, v in self.__dict__.items(): if k[0] != '_' and not k.endswith("_e") and not k == "cli" \ and 'api' not in k.lower() and 'token' not in k.lower() \ - and 'secret' not in k.lower() + and 'secret' not in k.lower(): storage[k] = v return storage