0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-08 14:40:05 +00:00

Fix pyright warning

This commit is contained in:
Pēteris Caune 2024-10-29 11:54:48 +02:00
parent f421317aea
commit a6ca589b34
No known key found for this signature in database
GPG key ID: E28D7679E9A9EDE2

View file

@ -24,8 +24,7 @@ RE_UUID = re.compile(
class LogSink(Protocol):
def write(self, text: str) -> None:
...
def write(self, msg: str) -> None: ...
def _match(subject: str, keywords: str) -> bool: