Skip to content

Commit 26863af

Browse files
committed
Revert "Revert "debug""
This reverts commit 704b0f3.
1 parent 704b0f3 commit 26863af

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/pr_lint/main.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import typer
55
from github import Github
66

7-
from .formatter import format
7+
# from .formatter import format
88
from .linter import lint
99

1010
app = typer.Typer()
@@ -30,10 +30,8 @@ def main() -> None:
3030
pr = repo.get_pull(int(pr_number))
3131

3232
lint(pr)
33-
try:
34-
format(pr)
35-
except Exception as e:
36-
logging.error(e)
33+
logging.error("lint(pr)")
34+
# format(pr)
3735

3836

3937
if __name__ == "__main__":

0 commit comments

Comments
 (0)