add "additional word" (aword) command arument spec type

This commit is contained in:
jesopo 2020-01-27 11:56:28 +00:00
parent dc4adc4d71
commit d438b6dbc9

View file

@ -1,5 +1,6 @@
import enum, typing
from .time import duration
from . import try_int
class SpecArgumentContext(enum.IntFlag):
CHANNEL = 1
@ -27,6 +28,11 @@ class SpecArgumentTypeWord(SpecArgumentType):
if args:
return args[0], 1
return None, 1
class SpecArgumentTypeAdditionalWord(SpecArgumentType):
def simple(self, args: typing.List[str]) -> typing.Tuple[typing.Any, int]:
if len(args) > 1:
return args[0], 1
return None, 1
class SpecArgumentTypeWordLower(SpecArgumentTypeWord):
def simple(self, args: typing.List[str]) -> typing.Tuple[typing.Any, int]:
out = SpecArgumentTypeWord.simple(self, args)
@ -58,6 +64,7 @@ class SpecArgumentPrivateType(SpecArgumentType):
SPEC_ARGUMENT_TYPES = {
"word": SpecArgumentTypeWord,
"aword": SpecArgumentTypeAdditionalWord,
"wordlower": SpecArgumentTypeWordLower,
"string": SpecArgumentTypeString,
"tstring": SpecArgumentTypeTrimString,