Skip to content

Commit

Permalink
Merge pull request #769 from Codium-ai/hl/incremental_review_update
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
hussam789 authored Mar 11, 2024
2 parents 72cbf36 + 476d64b commit 42cd85b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pr_agent/tools/pr_reviewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ async def run(self) -> None:
'config': dict(get_settings().config)}
get_logger().debug("Relevant configs", artifacts=relevant_configs)

if self.incremental.is_incremental and hasattr(self.git_provider, "file_set") and not self.git_provider.unreviewed_files_set:
if self.incremental.is_incremental and hasattr(self.git_provider, "unreviewed_files_set") and not self.git_provider.unreviewed_files_set:
get_logger().info(f"Incremental review is enabled for {self.pr_url} but there are no new files")
previous_review_url = ""
if hasattr(self.git_provider, "previous_review"):
Expand Down

0 comments on commit 42cd85b

Please sign in to comment.