diff options
| author | John Turner <jturner.usa@gmail.com> | 2025-09-11 01:37:16 -0400 |
|---|---|---|
| committer | John Turner <jturner.usa@gmail.com> | 2025-09-11 01:37:16 -0400 |
| commit | ef5c914c7f05f330b49c8e135073d4179ed679f7 (patch) | |
| tree | 71c9694c918e73c522f2404a4f708ffb7d8605b6 | |
| parent | 9ff6d61ab159b7c7b6d7433e0368660946b16bdf (diff) | |
| download | pypaste-plugabble-clients.tar.gz | |
fix unused variable lintplugabble-clients
| -rw-r--r-- | pypaste/client/__main__.py | 2 |
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") |
