From 4a695a7baca6c4c5d99d743a68032ef2a1371108 Mon Sep 17 00:00:00 2001 From: WhatDidYouExpect <89535984+WhatDidYouExpect@users.noreply.github.com> Date: Fri, 18 Jul 2025 01:30:57 +0200 Subject: [PATCH] added os why not fuck it amirite --- bot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 9315b3a..45da38d 100644 --- a/bot.py +++ b/bot.py @@ -7,8 +7,8 @@ import traceback import subprocess import tempfile import shutil -import uuid import asyncio +import platform import sys from typing import List, Dict, Set, Optional, Tuple, Any, Union, Callable, Coroutine, TypeVar, Type import logging @@ -480,6 +480,7 @@ async def about(ctx: commands.Context) -> None: embed.add_field(name=f"{(_('command_about_embed_field1'))}", value=f"{NAME}", inline=False) embed.add_field(name=f"{(_('command_about_embed_field2name'))}", value=f"{(_('command_about_embed_field2value')).format(local_version=local_version, latest_version=latest_version)}", inline=False) embed.add_field(name=f"Github", value=get_git_remote_url()) + embed.add_field(name=f"OS", value=platform.platform) await send_message(ctx, embed=embed)