summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-09-11 01:37:16 -0400
committerJohn Turner <jturner.usa@gmail.com>2025-09-11 01:51:15 -0400
commitdbf17903c8fee719f88c8fb216efed3a375d2f44 (patch)
tree74ccfb1a5a1ae79717fc661f8866ff3202f8eb11
parent4db4e81162421e881d2b63402719da4480357952 (diff)
downloadpypaste-dbf17903c8fee719f88c8fb216efed3a375d2f44.tar.gz
fix unused variable lintplugable-clients
-rw-r--r--pypaste/client/__main__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pypaste/client/__main__.py b/pypaste/client/__main__.py
index edb4972..0da86d8 100644
--- a/pypaste/client/__main__.py
+++ b/pypaste/client/__main__.py
@@ -20,7 +20,7 @@ def main() -> int:
parser = ArgumentParser()
subparsers = parser.add_subparsers(dest="command")
- list_services_parser = subparsers.add_parser("list-services")
+ _ = subparsers.add_parser("list-services")
list_syntaxes_parser = subparsers.add_parser("list-syntaxes")
list_syntaxes_parser.add_argument("service")