Skip to content

Commit

Permalink
chore(eyecite): lint
Browse files Browse the repository at this point in the history
  • Loading branch information
flooie committed Jan 10, 2025
1 parent b239171 commit a785288
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions eyecite/resolve.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,14 @@ def _filter_by_matching_plaintiff_or_defendant(
if not isinstance(full_citation, FullCaseCitation):
continue
defendant_match = (
defendant
and full_citation.metadata.defendant
and defendant in full_citation.metadata.defendant
defendant
and full_citation.metadata.defendant
and defendant in full_citation.metadata.defendant
)
plaintiff_match = (
plaintiff
and full_citation.metadata.plaintiff
and plaintiff in full_citation.metadata.plaintiff
plaintiff
and full_citation.metadata.plaintiff
and plaintiff in full_citation.metadata.plaintiff
)
if defendant_match or plaintiff_match:
matches.append(resource)
Expand Down

0 comments on commit a785288

Please sign in to comment.