:Optional, not =Optional
This commit is contained in:
parent
9b9ce11202
commit
63878e75cd
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ class Nick(IMatchResponseHostmask):
|
|||
class Mask(IMatchResponseHostmask):
|
||||
def __init__(self, mask: str):
|
||||
self._mask = mask
|
||||
self._compiled = Optional[Glob]
|
||||
self._compiled: Optional[Glob]
|
||||
def __repr__(self) -> str:
|
||||
return f"Mask({self._mask!r})"
|
||||
def match(self, server: IServer, hostmask: Hostmask):
|
||||
|
|
Loading…
Reference in a new issue