Removed the now-unused SqlQuery from the Mia core application.

This commit is contained in:
2020-07-18 23:43:31 +08:00
parent b8eb78cc9f
commit 1cd64955a3
2 changed files with 1 additions and 21 deletions

View File

@ -455,22 +455,3 @@ class PaginationException(Exception):
def __init__(self, url):
self.url = url
class SqlQuery:
"""A SQL query statement with its parameters.
Args:
sql (str): The SQL statement.
params (list[str]): the parameters.
Attributes:
sql (str): The SQL statement.
params (list[str]): the parameters.
"""
sql = ""
params = []
def __init__(self, sql, params):
self.sql = sql
self.params = params