For example: ``` @given('I have {count:w} apples') @given('I have apples') def given_i_have_apples(count=1): return count ``` The step `Given I have 5 apples` will always return 1. Is there no way to provide default values for such arguments?