Skip to content

Commit

Permalink
fix(eyecite): Black lint
Browse files Browse the repository at this point in the history
  • Loading branch information
flooie committed Jan 10, 2025
1 parent b56bf22 commit af97e06
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions eyecite/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,9 +313,9 @@ def is_parallel_citation(self, preceding: CitationBase):
"""
is_parallel = (
self.full_span_start == preceding.full_span_start
and self.full_span_end == preceding.full_span_end
and isinstance(preceding, FullCaseCitation)
self.full_span_start == preceding.full_span_start
and self.full_span_end == preceding.full_span_end
and isinstance(preceding, FullCaseCitation)
)
if is_parallel:
self.metadata.defendant = preceding.metadata.defendant
Expand Down

0 comments on commit af97e06

Please sign in to comment.