Integer is a closer fit for bool

This commit is contained in:
tcely 2025-02-13 02:26:56 -05:00 committed by GitHub
parent 811bbdf57f
commit 1ccdd2e58b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -45,7 +45,7 @@ class FileExtension(models.TextChoices):
MKV = 'mkv', _('Matroska Multimedia Container')
class FilterSeconds(models.TextChoices):
class FilterSeconds(models.IntegerChoices):
MIN = True, _('Minimum Length')
MAX = False, _('Maximum Length')