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.
你好 - 我已经审阅了你的修改,它们看起来很棒!
帮助我变得更有用!请在每个评论上点击 👍 或 👎,我将利用这些反馈来改进你的审阅。
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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: