Skip to content

Commit d2e4484

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 1744289 commit d2e4484

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

juriscraper/pacer/docket_report.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ def from_html_file(cls, path):
512512
try:
513513
_ = get_doc_id_prefix_from_court_id(court)
514514
except KeyError:
515-
court = 'cand'
515+
court = "cand"
516516

517517
report = DocketReport(court)
518518
with open(path, "rb") as f:

juriscraper/pacerdocket.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111

1212
for path in sys.argv[1:]:
1313
report = DocketReport.from_html_file(path)
14-
print(json.dumps(report.data,
15-
indent=2,
16-
sort_keys=True,
17-
separators=(",", ": ")))
14+
print(
15+
json.dumps(
16+
report.data, indent=2, sort_keys=True, separators=(",", ": ")
17+
)
18+
)

0 commit comments

Comments
 (0)