diff --git a/chicago/management/commands/preview_search_text.py b/chicago/management/commands/preview_search_text.py index 9e3ecfd..5bf495d 100644 --- a/chicago/management/commands/preview_search_text.py +++ b/chicago/management/commands/preview_search_text.py @@ -12,19 +12,11 @@ class Command(BaseCommand): def add_arguments(self, parser): parser.add_argument( "identifier", - help=( - "The identifier of the bill to preview" - ), + help=("The identifier of the bill to preview"), ) - - def handle(self, *args, **kwargs): - - - - b = ChicagoBill.objects.get(identifier=kwargs['identifier']) + b = ChicagoBill.objects.get(identifier=kwargs["identifier"]) self.stdout.write(pprint.pformat(BillIndex().prepare(b), indent=4)) -