Unused import shlex in app.py #16

Open
opened 2026-03-19 17:31:14 +00:00 by llabeyrie · 0 comments
Owner

Description

app.py line 4 imports shlex but it is never used anywhere in the file:

import shlex   # line 4 — unused

Fix

Remove the unused import. If it was intended for safe shell quoting, apply it to the subprocess command construction (see issue #1).

## Description `app.py` line 4 imports `shlex` but it is never used anywhere in the file: ```python import shlex # line 4 — unused ``` ### Fix Remove the unused import. If it was intended for safe shell quoting, apply it to the subprocess command construction (see issue #1).
llabeyrie added the code-qualitypriority: low labels 2026-03-19 17:31:50 +00:00
Sign in to join this conversation.