ArgumentError for prodigy train on v1.11.0a6

:wave: When using prodigy train (and a few other commands), I receive this error on v1.11.0a6:

Traceback (most recent call last):
File "/Users/jamie/.pyenv/versions/3.8.7/lib/python3.8/runpy.py", line 194, in _run_module_as_main
return _run_code(code, main_globals, None,
File "/Users/jamie/.pyenv/versions/3.8.7/lib/python3.8/runpy.py", line 87, in _run_code
exec(code, run_globals)
File "/Users/jamie/.pyenv/versions/3.8.7/lib/python3.8/site-packages/prodigy/main.py", line 54, in
controller = recipe(*args, use_plac=True)
File "cython_src/prodigy/core.pyx", line 329, in prodigy.core.recipe.recipe_decorator.recipe_proxy
File "/Users/jamie/.pyenv/versions/3.8.7/lib/python3.8/site-packages/plac_core.py", line 363, in call
parser = parser_from(obj)
File "/Users/jamie/.pyenv/versions/3.8.7/lib/python3.8/site-packages/plac_core.py", line 147, in parser_from
parser.populate_from(obj)
File "/Users/jamie/.pyenv/versions/3.8.7/lib/python3.8/site-packages/plac_core.py", line 318, in populate_from
self.add_argument(
File "/Users/jamie/.pyenv/versions/3.8.7/lib/python3.8/argparse.py", line 1386, in add_argument
return self._add_action(action)
File "/Users/jamie/.pyenv/versions/3.8.7/lib/python3.8/argparse.py", line 1749, in _add_action
self._optionals._add_action(action)
File "/Users/jamie/.pyenv/versions/3.8.7/lib/python3.8/argparse.py", line 1590, in _add_action
action = super(_ArgumentGroup, self)._add_action(action)
File "/Users/jamie/.pyenv/versions/3.8.7/lib/python3.8/argparse.py", line 1400, in _add_action
self._check_conflict(action)
File "/Users/jamie/.pyenv/versions/3.8.7/lib/python3.8/argparse.py", line 1539, in _check_conflict
conflict_handler(action, confl_optionals)
File "/Users/jamie/.pyenv/versions/3.8.7/lib/python3.8/argparse.py", line 1548, in _handle_conflict_error
raise ArgumentError(action, message % conflict_string)
argparse.ArgumentError: argument -t/--senter: conflicting option string: -t

I managed to fix the above error by setting use_plac=False on L54 in prodigy/__main__.py :bowing_man:

Ah, sorry about that, this was a bug in the recent nightly release! I'm just building a new version.

In the meantime, the actual fix needed is to find the following line in recipes/train.py and change the "t" to "s" (the shortcut used for this particular argument, a copy-paste mistake caused a conflict here):

"senter": ("Comma-separated sentence datasets", "option", "s", split_string),

Edit: Fixed in v1.11.0a7!