0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-03 04:15:29 +00:00

Add missing type annotation

This commit is contained in:
Pēteris Caune 2025-03-17 09:35:27 +02:00
parent ca4253324a
commit 0456a5934a
No known key found for this signature in database
GPG key ID: E28D7679E9A9EDE2

View file

@ -920,7 +920,7 @@ class Channel(models.Model):
checks = Check.objects.filter(project=self.project)
self.checks.add(*checks)
def make_token(self, use_sha1=False) -> str:
def make_token(self, use_sha1: bool = False) -> str:
seed = str(self.code) + settings.SECRET_KEY
seed_bytes = seed.encode()
if use_sha1: