fix(speedtest): fixed an AttributeError
This commit is contained in:
parent
c3ab7593c7
commit
14dfafea2a
1 changed files with 2 additions and 1 deletions
|
@ -8,6 +8,7 @@
|
|||
import asyncio
|
||||
import json
|
||||
import subprocess
|
||||
from typing import Any
|
||||
|
||||
import discord
|
||||
from redbot.core import commands
|
||||
|
@ -34,7 +35,7 @@ class Speedtest(commands.Cog):
|
|||
]
|
||||
return "\n".join(text)
|
||||
|
||||
async def run_speedtest(self) -> str | asyncio.Any:
|
||||
async def run_speedtest(self) -> str | Any:
|
||||
process = await asyncio.create_subprocess_exec(
|
||||
"speedtest", "-f json", "--accept-license",
|
||||
stdout=subprocess.PIPE,
|
||||
|
|
Loading…
Reference in a new issue