Skip to content

Commit

Permalink
add print output for now
Browse files Browse the repository at this point in the history
  • Loading branch information
mscheltienne committed Apr 29, 2024
1 parent d6a40f2 commit fd75dfb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fcbg_ruff/commands/check.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import argparse
from pprint import pprint

from ..check import validate_folder

Expand All @@ -21,4 +22,5 @@ def run() -> None:
default=1,
)
args = parser.parse_args()
validate_folder(args.folder, args.jobs)
violations = validate_folder(args.folder, args.jobs)
pprint(violations)

0 comments on commit fd75dfb

Please sign in to comment.