This commit is contained in:
Gilles Boccon-Gibod
2023-10-29 11:32:00 -07:00
parent 49d32f5b5b
commit 9d2f3e932a
4 changed files with 4 additions and 5 deletions

View File

@@ -125,7 +125,7 @@ def lint(ctx, disable='C,R', errors_only=False):
print(f">>> Running the linter{qualifier}...")
try:
ctx.run(f"pylint {' '.join(options)} bumble apps examples tasks.py")
print("The linter is happy. ✅ 😊 🐝'")
print("The linter is happy. ✅ 😊 🐝")
except UnexpectedExit as exc:
print("Please check your code against the linter messages. ❌")
raise Exit(code=1) from exc