Skip to content

Commit

Permalink
Run make lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Waterson committed Dec 8, 2022
1 parent 30f378b commit 6f1737e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion piplicenses.py
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ def create_output_string(args: CustomNamespace) -> str:

if args.format_ == FormatArg.HTML:
html = table.get_html_string(fields=output_fields, sortby=sortby)
return html.encode('ascii', errors='xmlcharrefreplace').decode('ascii')
return html.encode("ascii", errors="xmlcharrefreplace").decode("ascii")
else:
return table.get_string(fields=output_fields, sortby=sortby)

Expand Down

0 comments on commit 6f1737e

Please sign in to comment.