From e87e6738b51c0539f4b24f8c69ea8aadd0b32028 Mon Sep 17 00:00:00 2001 From: Lonami Exo Date: Tue, 30 Aug 2022 12:32:23 +0200 Subject: [PATCH] Revert "Add missing async keywords in SQLiteSession" This reverts commit 0f5eeb29e7bfce3f4c6271a6aa9d3ee3fb38793a. --- telethon/sessions/sqlite.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/telethon/sessions/sqlite.py b/telethon/sessions/sqlite.py index f687080a..6c9d042e 100644 --- a/telethon/sessions/sqlite.py +++ b/telethon/sessions/sqlite.py @@ -303,11 +303,11 @@ class SQLiteSession(MemorySession): finally: c.close() - async def get_entity_rows_by_phone(self, phone): + def get_entity_rows_by_phone(self, phone): return self._execute( 'select id, hash from entities where phone = ?', phone) - async def get_entity_rows_by_username(self, username): + def get_entity_rows_by_username(self, username): c = self._cursor() try: results = c.execute( @@ -328,7 +328,7 @@ class SQLiteSession(MemorySession): finally: c.close() - async def get_entity_rows_by_name(self, name): + def get_entity_rows_by_name(self, name): return self._execute( 'select id, hash from entities where name = ?', name) @@ -346,7 +346,7 @@ class SQLiteSession(MemorySession): # File processing - async def get_file(self, md5_digest, file_size, cls): + def get_file(self, md5_digest, file_size, cls): row = self._execute( 'select id, hash from sent_files ' 'where md5_digest = ? and file_size = ? and type = ?', @@ -356,7 +356,7 @@ class SQLiteSession(MemorySession): # Both allowed classes have (id, access_hash) as parameters return cls(row[0], row[1]) - async def cache_file(self, md5_digest, file_size, instance): + def cache_file(self, md5_digest, file_size, instance): if not isinstance(instance, (InputDocument, InputPhoto)): raise TypeError('Cannot cache %s instance' % type(instance))