In the following code example, the positional argument `y` triggers a strict error: ```js .command('request', 'request command', function (yargs) { yargs .command('get <y>', 'sub-command') }) ``` ## expected behavior We should recognize the variable `y`.