Skip to content

Commit

Permalink
fix: pass correct self object
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
  • Loading branch information
henryiii committed Aug 3, 2023
1 parent d281a88 commit cfe2ecd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
root.render(
<App
header={true}
deps={["sp-repo-review==2023.08.03", "repo-review==0.9.1"]}
deps={["sp-repo-review==2023.08.03", "repo-review==0.9.2"]}
/>,
);
</script>
Expand Down
2 changes: 1 addition & 1 deletion src/repo_review/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def process(
""
if result
else (tasks[name].check.__doc__ or "Check failed").format(
name=name, self=tasks[name].check
name=name, self=tasks[name]
)
)
else:
Expand Down

0 comments on commit cfe2ecd

Please sign in to comment.