From ca25d168791febab722a3750d62262536423870c Mon Sep 17 00:00:00 2001 From: Andrew DeOrio Date: Thu, 31 Oct 2024 15:31:25 -0400 Subject: [PATCH] lint --- mailmerge/__main__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mailmerge/__main__.py b/mailmerge/__main__.py index b4a1d9c..fbf4942 100644 --- a/mailmerge/__main__.py +++ b/mailmerge/__main__.py @@ -73,7 +73,9 @@ def main(sample, dry_run, limit, no_limit, resume, """ # We need an argument for each command line option. That also means a lot # of local variables. - # pylint: disable=too-many-arguments, too-many-locals + # pylint: disable=too-many-arguments + # pylint: disable=too-many-positional-arguments + # pylint: disable=too-many-locals # Convert paths from string to Path objects # https://github.com/pallets/click/issues/405