From 3d69409ef49b30bc988579b3386c29da9b906a8d Mon Sep 17 00:00:00 2001 From: Jeff Schaller <17769792+jeffschaller@users.noreply.github.com> Date: Wed, 17 Apr 2024 20:51:23 -0400 Subject: [PATCH] typo fix for "existance" --- helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers.py b/helpers.py index dae467964d..3e268a31a9 100644 --- a/helpers.py +++ b/helpers.py @@ -63,7 +63,7 @@ class ErrorLogs: db.commit() except (sqlite3.OperationalError): # In CI testing, it's possible for the table to be created in a different thread between when - # we first test for the table's existance and when we try to create the table. + # we first test for the table's existence and when we try to create the table. if db.execute("SELECT name FROM sqlite_master WHERE type='table' AND name='error_logs'").fetchone() is None: # Table 'error_logs' still doesn't exist raise