diff --git a/meilisync/source/postgres.py b/meilisync/source/postgres.py index 6b29aeb..df8420d 100644 --- a/meilisync/source/postgres.py +++ b/meilisync/source/postgres.py @@ -71,9 +71,7 @@ async def get_full_data(self, sync: Sync, size: int): fields = "*" def execute(): - cur.execute( - f"SELECT {fields} FROM {sync.table}" - ) + cur.execute(f"SELECT {fields} FROM {sync.table}") def fetch(): return cur.fetchmany(size)