Comment 4 for bug 1328169

Revision history for this message
asmeurer (asmeurer) wrote :

pyflakes already doesn't warn about unused variables from unpacking. For a single value, why don't you just write

func()

instead of

_ = func()

Every function returns a value, but if you don't care about it, then don't assign it to anything. _ = func() is just confusing, and much less readable.