Skip to content

Commit

Permalink
add noqa comments
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas committed Aug 26, 2023
1 parent 87f985e commit dc0d092
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
from __future__ import annotations

from django.core.management.base import BaseCommand

from django_q_registry.registry import registry


class Command(BaseCommand):
help = "Register all tasks in the registry"
help = "Register all tasks in the registry" # noqa: A003

def handle(self, *args, **options):
def handle(self, *args, **options): # noqa: ARG002
registry.register_all()

0 comments on commit dc0d092

Please sign in to comment.