Reports incorrect arguments in step definition functions.

Example:


from behave import *


@given("I'm ready")
def step_impl(context,a):
    raise NotImplementedError(u'STEP: Given I\'m ready')

The a argument is highlighted as an inappropriate. The quick-fix removes it.