Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
teovin committed Jun 12, 2024
1 parent 7bc82ff commit 1a1f7d2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions web/main/case_xml_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
Convert between XML and HTML versions of CAP's formatted case data.
"""

from pprint import pprint

import lxml.sax
import lxml.html
import xml.sax
Expand Down Expand Up @@ -81,7 +79,7 @@ def startElement(self, name, attrs):
"a",
{
"id": "p" + label,
"href": f"#p" + label,
"href": f"#p{label}",
"data-label": label,
"data-citation-index": attrs["citation-index"],
"class": "page-label",
Expand Down

0 comments on commit 1a1f7d2

Please sign in to comment.