This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# FRR:该模块定义了Django应用"comments"的配置类,
# 用于告诉Django如何识别和配置该应用,是Django应用的核心配置文件之一。
from django.apps import AppConfig
# FRR:评论应用(comments)的配置类,继承自Django的AppConfig基类
class CommentsConfig(AppConfig):
# FRR:应用的名称,必须与应用目录名一致,Django通过该名称识别应用
name = 'comments'