Skip to content

Commit

Permalink
fix: 给函数加上 await
Browse files Browse the repository at this point in the history
  • Loading branch information
BigOrangeQWQ committed Sep 2, 2024
1 parent aba04a2 commit 09354da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/publish/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ async def handle_publish_plugin_check(
if issue.state != "open":
logger.info("议题未开启,已跳过")
await publish_check_matcher.finish()
if should_skip_plugin_publish(issue):
if await should_skip_plugin_publish(issue):
logger.info("测试按钮已勾选,跳过插件发布检查")

# 是否需要跳过插件测试
Expand Down

0 comments on commit 09354da

Please sign in to comment.