Skip to content

Commit

Permalink
feat: management command to revoke credentials
Browse files Browse the repository at this point in the history
fixing import sorting

FIXES: APER-3799
  • Loading branch information
deborahgu committed Dec 4, 2024
1 parent cbc0700 commit 453fb59
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"""Management command to revoke certificates given a certificate ID and a list of users"""

from typing import TYPE_CHECKING
import logging
import shlex
from typing import TYPE_CHECKING

from django.contrib.auth import get_user_model
from django.core.management.base import BaseCommand, CommandError
Expand All @@ -12,6 +12,7 @@

if TYPE_CHECKING:
from argparse import ArgumentParser

from django.db.models import QuerySet


Expand Down

0 comments on commit 453fb59

Please sign in to comment.