accept gdpr
Some checks failed
Actions / Lint Code (Ruff & Pylint) (pull_request) Failing after 1s
Actions / Build Documentation (MkDocs) (pull_request) Failing after 0s

This commit is contained in:
Seaswimmer 2024-12-26 11:10:53 -05:00
parent 9103d64fbc
commit 16e2f477be
Signed by: CoastalCommitsManagement
GPG key ID: 7E73189F651A553F

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
)