diff options
author | Kyomotoi <[email protected]> | 2022-04-04 17:08:28 +0800 |
---|---|---|
committer | Kyomotoi <[email protected]> | 2022-04-05 15:27:21 +0800 |
commit | f1ce42da9027f416561ecabe34e0f5592bdfdd3e (patch) | |
tree | f06c7079d890bc4d2f9bb671d890fd058d461903 /ATRI/plugins/util | |
parent | a5905ef59ed9d6820557b69ee5a41849c4dbccdc (diff) | |
download | ATRI-f1ce42da9027f416561ecabe34e0f5592bdfdd3e.tar.gz ATRI-f1ce42da9027f416561ecabe34e0f5592bdfdd3e.tar.bz2 ATRI-f1ce42da9027f416561ecabe34e0f5592bdfdd3e.zip |
⚰️ 清除未使用的代码
Diffstat (limited to 'ATRI/plugins/util')
-rw-r--r-- | ATRI/plugins/util/data_source.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/ATRI/plugins/util/data_source.py b/ATRI/plugins/util/data_source.py index 7b36ebe..4a73c26 100644 --- a/ATRI/plugins/util/data_source.py +++ b/ATRI/plugins/util/data_source.py @@ -8,14 +8,9 @@ from ATRI.service import Service from ATRI.rule import is_in_service -__doc__ = """ -非常实用(?)的工具们! -""" - - class Utils(Service): def __init__(self): - Service.__init__(self, "小工具", __doc__, rule=is_in_service("小工具")) + Service.__init__(self, "小工具", "非常实用(?)的工具们!", rule=is_in_service("小工具")) @staticmethod def roll_dice(par: str) -> str: |