Browse Source

Remove unused function

jherve 1 year ago
parent
commit
07b3f576fd
1 changed files with 0 additions and 9 deletions
  1. 0 9
      src/de_quoi_parle_le_monde/storage.py

+ 0 - 9
src/de_quoi_parle_le_monde/storage.py

@@ -595,15 +595,6 @@ class Storage:
                 for a in main_articles
             ]
 
-    async def select_from(self, table):
-        async with self.conn as conn:
-            return await conn.execute_fetchall(
-                f"""
-                    SELECT *
-                    FROM {table}
-                """,
-            )
-
     async def _insert_or_get(
         self,
         insert_stmt: str,