summaryrefslogtreecommitdiff
path: root/Biz/Dragons
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2023-08-22 11:46:08 -0400
committerBen Sima <ben@bsima.me>2023-08-22 11:46:08 -0400
commitc13e829e145daf96ea2be9b4d35fc2a94a1b33bd (patch)
treebeaec3d7c830b5c59561f1a225ea37ac1731c54e /Biz/Dragons
parent9eac46cfeddc65938b3cc946629a9c3d93ac35ee (diff)
Replace pylint with ruff
Ruff is like a million times faster, and I mostly ignored pylint's suggestions anyway. I also took this opportunity to move lint tools into a runtime dependency on Lint.hs, which meant adding a wrapper to the Haskell builder, which was easy enough. This paves the way for proper rundeps in bild.
Diffstat (limited to 'Biz/Dragons')
-rwxr-xr-xBiz/Dragons/main.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/Biz/Dragons/main.py b/Biz/Dragons/main.py
index 7813f45..7ec80bb 100755
--- a/Biz/Dragons/main.py
+++ b/Biz/Dragons/main.py
@@ -101,7 +101,12 @@ def get_args() -> typing.Any:
"--active-users",
nargs="+",
default=[],
- help="list of active user emails. if not provided, this is loaded from .mailmap",
+ help=" ".join(
+ [
+ "list of active user emails."
+ "if not provided, this is loaded from .mailmap"
+ ]
+ ),
)
cli.add_argument(
"-v",