diff --git a/src/reynir_correct/pattern.py b/src/reynir_correct/pattern.py index 93de72b..2878215 100644 --- a/src/reynir_correct/pattern.py +++ b/src/reynir_correct/pattern.py @@ -1708,7 +1708,8 @@ def né(self, match: SimpleTree) -> None: ) def agreement_conj(self, match: SimpleTree) -> None: - """A verb, whose subject precedes a conjunction, is not in agreement with the subject. E.g. 'Bílarnir eru léttari og gæti verið hraðari.'""" + """A verb, whose subject precedes a conjunction, is not in agreement with the subject. + E.g. 'Bílarnir eru léttari og gæti verið hraðari.'""" vp = match.first_match("VP > (so_ft|so_et)") if vp is None: return @@ -1739,7 +1740,8 @@ def agreement_conj(self, match: SimpleTree) -> None: ) def agreement_subpost_sing(self, match: SimpleTree) -> None: - """A plural verb which precedes its subject is not in agreement with the subject, which is singular. E.g. 'Í skrúðgöngunni eru fólk klætt...'""" + """A plural verb which precedes its subject is not in agreement with the subject, + which is singular. E.g. 'Í skrúðgöngunni eru fólk klætt...'""" vp = match.first_match("VP > (so_ft)") if vp is None: return