Skip to content

Commit

Permalink
blackify
Browse files Browse the repository at this point in the history
  • Loading branch information
fgregg committed Jan 13, 2024
1 parent 80f1db8 commit a5fb67f
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions chicago/management/commands/preview_search_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))

0 comments on commit a5fb67f

Please sign in to comment.