Skip to content

Commit b243a4d

Browse files
author
serge[bot]
committed
Add package identity comment and missing Makefile style target
1 parent e2273c2 commit b243a4d

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: format test
1+
.PHONY: format style test
22

33
PYTHON ?= python3
44
VENV ?= .venv
@@ -14,5 +14,9 @@ $(VENV)/.installed: pyproject.toml
1414
format: $(VENV)/.installed
1515
$(RUFF) format reviewbot tests
1616

17+
style: format
18+
$(RUFF) check --fix reviewbot tests
19+
1720
test: $(VENV)/.installed
1821
$(VENV_PYTHON) -m pytest tests/
22+

reviewbot/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""GitHub-native AI code reviewer for any OpenAI-compatible LLM."""
22

3+
# This package is the serge reviewer.
4+
35
import functools as _functools
46
import os as _os
57
import subprocess as _subprocess

0 commit comments

Comments
 (0)