False positive for a function called through the `globals()` dict
johndoknjas opened this issue · 0 comments
johndoknjas commented
def f()
pass
globals()['f']()
Vulture will say that f()
is unused. However, I'd assume dealing with this case is probably way more work than it's worth. It's quite rare (and often poor style) for someone to call a function like this.