File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
src/nonebot_plugin_alconna Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 141141from .uniseg import SupportAdapterModule as SupportAdapterModule
142142from .extension import add_global_extension as add_global_extension
143143
144- __version__ = "0.59.2 "
144+ __version__ = "0.59.3 "
145145__supported_adapters__ = set (m .value for m in SupportAdapterModule .__members__ .values ()) # noqa: C401
146146__plugin_meta__ = PluginMetadata (
147147 name = "Alconna 插件" ,
Original file line number Diff line number Diff line change @@ -114,9 +114,9 @@ class AlconnaMatcherMeta(MatcherMeta):
114114 def __repr__ (self ) -> str :
115115 return (
116116 f"{ self .__class__ .__name__ } (type={ self .type !r} "
117+ + f", command={ escape_tag (self ._command_path )} "
117118 + (f", module={ self .module_name } " if self .module_name else "" )
118119 + (f", lineno={ self ._source .lineno } " if self ._source and self ._source .lineno is not None else "" )
119- + f", command={ self ._command_path } "
120120 + ")"
121121 )
122122
@@ -142,9 +142,9 @@ def clean(cls) -> None:
142142 def __repr__ (self ) -> str :
143143 return (
144144 f"{ self .__class__ .__name__ } (type={ self .type !r} "
145+ + f", command={ escape_tag (self ._command_path )} "
145146 + (f", module={ self .module_name } " if self .module_name else "" )
146147 + (f", lineno={ self ._source .lineno } " if self ._source and self ._source .lineno is not None else "" )
147- + f", command={ self ._command_path } "
148148 + ")"
149149 )
150150
Original file line number Diff line number Diff line change 6464from .constraint import SupportAdapterModule as SupportAdapterModule
6565from .adapters import alter_get_builder , alter_get_fetcher , alter_get_exporter
6666
67- __version__ = "0.59.2 "
67+ __version__ = "0.59.3 "
6868
6969__plugin_meta__ = PluginMetadata (
7070 name = "Universal Segment 插件" ,
You can’t perform that action at this time.
0 commit comments