mirror of
https://github.com/DragonMinded/bemaniutils.git
synced 2026-09-12 20:35:14 -05:00
Reformat all multi-line SQL to remove format calls and make more readable.
This commit is contained in:
@@ -172,10 +172,10 @@ class BaseData:
|
||||
expiration = Time.now() + expiration
|
||||
|
||||
# Use that session
|
||||
sql = (
|
||||
"INSERT INTO session (id, session, type, expiration) "
|
||||
+ "VALUES (:id, :session, :optype, :expiration)"
|
||||
)
|
||||
sql = """
|
||||
INSERT INTO session (id, session, type, expiration)
|
||||
VALUES (:id, :session, :optype, :expiration)
|
||||
"""
|
||||
cursor = self.execute(
|
||||
sql,
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user