From 52c7df1061ff2afb8fb488d5aa92abc947c1ebdc Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Fri, 18 Nov 2022 22:01:01 -0800 Subject: [PATCH] Remove unnecessary fstring. --- etiquette/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etiquette/constants.py b/etiquette/constants.py index ab2ff52..135b034 100644 --- a/etiquette/constants.py +++ b/etiquette/constants.py @@ -43,7 +43,7 @@ ffmpeg = _load_ffmpeg() DATABASE_VERSION = 23 -DB_INIT = f''' +DB_INIT = ''' CREATE TABLE IF NOT EXISTS albums( id INT PRIMARY KEY NOT NULL, title TEXT,