From 2a859b84956fb23ea5b5b0cf3cd5c02935e0cf3c Mon Sep 17 00:00:00 2001 From: andrejkuroglo8 <176418899+andrejkuroglo8@users.noreply.github.com> Date: Sun, 10 May 2026 11:01:28 +0000 Subject: [PATCH] [ci] apply-plugin-metadata-and-formatting --- plugins/utilities.json | 3 ++- plugins/utilities/glowing_profiles.py | 11 ++++++++--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/plugins/utilities.json b/plugins/utilities.json index 110a18f..87a7a05 100644 --- a/plugins/utilities.json +++ b/plugins/utilities.json @@ -2571,7 +2571,7 @@ } }, "glowing_profiles": { - "description": "This plugin gives your profile glowlight, just like on some servers, but only offline. Dependences: simpleredefiner", + "description": "This plugin gives your profile glowlight, just like on some servers, but only offline.", "external_url": "https://m.youtube.com/watch?v=Jb_dKz99rhY", "authors": [ { @@ -2581,6 +2581,7 @@ } ], "versions": { + "1.0.1": null, "1.0.0": { "api_version": 9, "commit_sha": "d5cf26b", diff --git a/plugins/utilities/glowing_profiles.py b/plugins/utilities/glowing_profiles.py index 9f89ae4..26cbe20 100644 --- a/plugins/utilities/glowing_profiles.py +++ b/plugins/utilities/glowing_profiles.py @@ -12,17 +12,18 @@ import enum if TYPE_CHECKING: from typing import Type, Callable, Any, Tuple - + plugman = dict( plugin_name="glowing_profiles", description="This plugin gives your profile glowlight, just like on some servers, but only offline.", - external_url="https://m.youtube.com/watch?v=Jb_dKz99rhY", + external_url="https://m.youtube.com/watch?v=Jb_dKz99rhY", authors=[ {"name": "andrejkuroglo8", "email": "andrejkuroglo8@gmail.com", "discord": "andrewku"}, ], version="1.0.1", ) + def redefine_method(dst: Tuple[Any, str], src: Tuple[Any, str]) -> None: if hasattr(getattr(*src), '__redefine_type') and getattr(*src).__redefine_type in ( RedefineFlag.DECORATE_PRE, RedefineFlag.DECORATE_AFTER, RedefineFlag.DECORATE_ADVANCED): @@ -82,6 +83,7 @@ def redefine_class_methods(orig_cls: Type[object]) -> Callable[[Any], None]: return decorator + class RedefineFlag(enum.Enum): REDEFINE = 0 DECORATE_AFTER = 1 @@ -100,6 +102,7 @@ def redefine_flag(*flags: RedefineFlag) -> Callable[[Callable], Callable]: return decorator + def get_locale(*args): return "Error" @@ -214,5 +217,7 @@ class Chooser: self._update_text() # ba_meta export babase.Plugin + + class Glowing(babase.Plugin): - pass + pass