Test code: ```py def t(items): return ['{x}' for x in items] ``` There is a missing `f` prefix which makes the local `x` variable unused, but pyflakes doesn't notice this. ``` $ pyflakes --version 2.2.0 Python 3.8.6 on Linux ```