We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ce525d commit 4414e3dCopy full SHA for 4414e3d
2 files changed
src/lpdb_python/async_session/async_session.py
@@ -50,7 +50,6 @@ async def get_wikis() -> set[str]:
50
async with aiohttp.ClientSession("https://liquipedia.net/") as session:
51
async with session.get(
52
"api.php",
53
- params={"action": "listwikis"},
54
headers={"accept": "application/json", "accept-encoding": "gzip"},
55
) as response:
56
wikis = await response.json()
src/lpdb_python/session.py
@@ -312,7 +312,6 @@ class LpdbSession(AbstractLpdbSession):
312
def get_wikis() -> set[str]:
313
response = requests.get(
314
"https://liquipedia.net/api.php",
315
316
317
)
318
wikis = response.json()
0 commit comments