From 95e266c7cbb20f7288ee86782231069db95cc717 Mon Sep 17 00:00:00 2001 From: retoor Date: Tue, 3 Dec 2024 03:31:06 +0000 Subject: [PATCH] fix: pass explicit None executor to run_in_executor for get_rants call The diff shows a single change in `src/drstats/sync.py` where `loop.run_in_executor(get_rants)` is corrected to `loop.run_in_executor(None, get_rants)`, adding the required `None` argument for the executor parameter to match the asyncio API signature. --- src/drstats/sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drstats/sync.py b/src/drstats/sync.py index 0c5f8d0..82b08b5 100644 --- a/src/drstats/sync.py +++ b/src/drstats/sync.py @@ -32,7 +32,7 @@ async def get_recent_rants(start_from=1, page_size=10): def get_rants(): return dr.get_rants("recent", page_size, start_from)["rants"] - rants = asyncio.wait_for(loop.run_in_executor(get_rants), 5) + rants = asyncio.wait_for(loop.run_in_executor(None,get_rants), 5) page += 1 for rant in rants: