# qiuwenbot, a bot to contribute to qiuwenbaike.cn# Copyright (C) 2023 Jinzhe Zeng## This program is free software: you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation, either version 3 of the License, or# (at your option) any later version.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with this program. If not, see <https://www.gnu.org/licenses/>.#from.filterimportTextReplaceFilter,register_filter
[docs]@register_filterclassCNGovFilter(TextReplaceFilter):"""Filter to fix the Chinese government terms."""def__init__(self):super().__init__(r"""(中国|中國|中共)(当局|當局|政府)""",r"中国政府",)@propertydeflog(self)->str:return"修正涉政用语1"