-
Notifications
You must be signed in to change notification settings - Fork 0
更新 nodelib.py #9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
审阅者指南(小型PR默认折叠)审阅者指南此PR更新了项目版本,并通过添加 更新后的 NodeLib 初始化器类图classDiagram
class NodeLib {
permissions_data: dict
node_dict: dict
__init__(permissions_data=None)
__str__()
__dump()
}
NodeLib : __init__() adds node_dict and calls __dump()
文件级更改
提示和命令与 Sourcery 交互
自定义你的体验访问你的 仪表盘 以:
获取帮助Original review guide in EnglishReviewer's guide (collapsed on small PRs)Reviewer's GuideThis PR updates the project version and enhances the NodeLib initializer by adding a node_dict attribute and triggering an initial dump on instantiation. Class diagram for updated NodeLib initializerclassDiagram
class NodeLib {
permissions_data: dict
node_dict: dict
__init__(permissions_data=None)
__str__()
__dump()
}
NodeLib : __init__() adds node_dict and calls __dump()
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
你好 - 我已经审阅了你的修改,它们看起来很棒!
帮助我变得更有用!请在每个评论上点击 👍 或 👎,我将利用这些反馈来改进你的审阅。
Original comment in English
Hey there - I've reviewed your changes and they look great!
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
Sourcery 总结
更新插件版本,并通过设置
node_dict和调用__dump()来改进 Nodelib 的初始化。改进:
node_dict属性并调用__dump()杂项:
pyproject.toml中的项目版本更新到 0.1.1Original summary in English
Summary by Sourcery
Bump plugin version and improve Nodelib initialization by setting up node_dict and invoking __dump()
Enhancements:
Chores: