Skip to content

Commit

Permalink
rm old TODO comments
Browse files Browse the repository at this point in the history
  • Loading branch information
lardbit committed Aug 16, 2024
1 parent dc5f964 commit 3dbcf52
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/nefarious/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ def get_first_admin_user():


class QualityProfile(models.Model):
# TODO - when "stop watching" the quality profile select box goes empty
name = models.CharField(max_length=500, unique=True)
quality = models.CharField(max_length=500, choices=zip(quality.PROFILE_NAMES, quality.PROFILE_NAMES))
min_size_gb = models.DecimalField(
Expand Down
2 changes: 0 additions & 2 deletions src/nefarious/processors.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,6 @@ def is_match(self, title: str, size_kb: int) -> bool:
size_gb = size_kb / (1024**2)
mismatch = None

# TODO - test other profile attributes (dolby 5.1, etc)

# title
if not self._is_match(parser):
mismatch = 'title'
Expand Down

0 comments on commit 3dbcf52

Please sign in to comment.