fix hostmask_match_many type hinting
This commit is contained in:
parent
c65a422284
commit
01ddc04bb9
1 changed files with 2 additions and 1 deletions
|
@ -330,7 +330,8 @@ class BatchType(object):
|
||||||
t = list(set([type])&self._names)
|
t = list(set([type])&self._names)
|
||||||
return t[0] if t else None
|
return t[0] if t else None
|
||||||
|
|
||||||
def hostmask_match_many(hostmasks: typing.List[str], pattern: str) -> str:
|
def hostmask_match_many(hostmasks: typing.List[str], pattern: str
|
||||||
|
) -> typing.Optional[str]:
|
||||||
part1_out = []
|
part1_out = []
|
||||||
for part1 in pattern.split("?"):
|
for part1 in pattern.split("?"):
|
||||||
part2_out = []
|
part2_out = []
|
||||||
|
|
Loading…
Reference in a new issue