-
-
Notifications
You must be signed in to change notification settings - Fork 2k
feat: QQOfficialPlatformAdapter 消息解析新增 appid 参数以确保能获取用户头像地址;移除多余的 At 组件,仅给群聊类型添加 At 组件 (#6741) #7289
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
base: master
Are you sure you want to change the base?
feat: QQOfficialPlatformAdapter 消息解析新增 appid 参数以确保能获取用户头像地址;移除多余的 At 组件,仅给群聊类型添加 At 组件 (#6741) #7289
Changes from all commits
596b6dd
722512f
741b25a
1ff042e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +0,0 @@ | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -27,7 +27,7 @@ def test_local_file_system_component_prefers_utf8_before_windows_locale( | |||||
|
|
||||||
| skill_path = tmp_path / "skills" / "demo.txt" | ||||||
| skill_path.parent.mkdir(parents=True, exist_ok=True) | ||||||
| skill_path.write_bytes("技能内容".encode("utf-8")) | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. issue (testing): Using Given the test name ( To keep the test deterministic and accurately exercise |
||||||
| skill_path.write_bytes("技能内容".encode()) | ||||||
|
||||||
| skill_path.write_bytes("技能内容".encode()) | |
| skill_path.write_bytes("技能内容".encode("utf-8")) |
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.
collections.abc.AsyncGeneratorexpects two type parameters (yield type, send type). UsingAsyncGenerator[None]is not a valid generic specialization for type checkers and is inconsistent with other Stage implementations in this repo (which useAsyncGenerator[None, None]). Consider changing this back toNone | AsyncGenerator[None, None](or switching toAsyncIterator[None]if you don’t need.asend()typing) and keep the docstring’s return type in sync.