remove debug print
This commit is contained in:
parent
ba1806007b
commit
d5f0cb5f3d
1 changed files with 0 additions and 1 deletions
|
@ -36,7 +36,6 @@ class SpecArgumentType(object):
|
||||||
class SpecArgumentTypePattern(SpecArgumentType):
|
class SpecArgumentTypePattern(SpecArgumentType):
|
||||||
_pattern: typing.Pattern
|
_pattern: typing.Pattern
|
||||||
def _set_modifier(self, modifier):
|
def _set_modifier(self, modifier):
|
||||||
print(modifier)
|
|
||||||
self._pattern = re.compile(modifier)
|
self._pattern = re.compile(modifier)
|
||||||
def simple(self, args):
|
def simple(self, args):
|
||||||
match = self._pattern.search(" ".join(args))
|
match = self._pattern.search(" ".join(args))
|
||||||
|
|
Loading…
Reference in a new issue