| commit | a311bd9e2b281c2088a1cf4e83f36b51bb9e962f | [log] [tgz] |
|---|---|---|
| author | Tom Tromey <tromey@adacore.com> | Tue Mar 19 10:27:56 2024 -0600 |
| committer | Tom Tromey <tromey@adacore.com> | Tue Apr 02 10:58:37 2024 -0600 |
| tree | f54012b456b71958c30bd053f6e5b00357c28639 | |
| parent | 2fde5149d735c9a7faf3efc0fc38e47744263466 [diff] |
Ignore unsed import in dap/__init__.py flake8 warns about dap/__init__.py because it has a number of unused imports. Most of these are intentional: the import is done to ensure that the a DAP request is registered with the server object. This patch applies a "noqa" comment to these imports, and also removes one import that is truly unnecessary. Approved-By: Simon Marchi <simon.marchi@efficios.com>