mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-20 14:45:17 +00:00
change and to or
This commit is contained in:
parent
a8bee89ae9
commit
416c4cbf52
1 changed files with 1 additions and 1 deletions
|
|
@ -229,7 +229,7 @@ class GithubProvider(GitProvider):
|
||||||
self.publish_comment(pr_comment)
|
self.publish_comment(pr_comment)
|
||||||
|
|
||||||
def publish_comment(self, pr_comment: str, is_temporary: bool = False):
|
def publish_comment(self, pr_comment: str, is_temporary: bool = False):
|
||||||
if is_temporary and not get_settings().config.publish_output_progress:
|
if is_temporary or not get_settings().config.publish_output_progress:
|
||||||
get_logger().debug(f"Skipping publish_comment for temporary comment: {pr_comment}")
|
get_logger().debug(f"Skipping publish_comment for temporary comment: {pr_comment}")
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue