WIP: Add Speedtest cog #28

Closed
cswimr wants to merge 20 commits from speedtest into main
Showing only changes of commit 16e2f477be - Show all commits

View file

@ -39,7 +39,7 @@ class Speedtest(commands.Cog):
async def run_speedtest(self) -> str | sp:
try:
process = await asyncio.create_subprocess_exec(
"speedtest", "-f", "json", "--accept-license",
"speedtest", "-f", "json", "--accept-license", "--accept-gdpr",
stdout=subprocess.PIPE,
stderr=subprocess.PIPE
)