diff --git a/docassemble/AssemblyLine/al_general.py b/docassemble/AssemblyLine/al_general.py index 06dd00b3..b5385472 100644 --- a/docassemble/AssemblyLine/al_general.py +++ b/docassemble/AssemblyLine/al_general.py @@ -1621,9 +1621,7 @@ def pronoun(self, **kwargs) -> str: parse_custom_pronouns(self.pronouns_self_described)["o"] ) elif has_parsable_pronouns(pronoun): - pronouns_to_use.append( - parse_custom_pronouns(pronoun)["o"] - ) + pronouns_to_use.append(parse_custom_pronouns(pronoun)["o"]) if len(pronouns_to_use) > 0: output = "/".join(pronouns_to_use) else: @@ -1698,7 +1696,7 @@ def pronoun_possessive(self, target, **kwargs) -> str: output = your(target, **kwargs) elif hasattr(self, "pronouns") and self.pronouns: pronouns_to_use = [] - if isinstance(pronouns, DADict): + if isinstance(pronouns, DADict): for pronoun in pronouns.true_values(): if pronoun in [ "she/her/hers", @@ -1806,9 +1804,7 @@ def pronoun_subjective(self, **kwargs) -> str: parse_custom_pronouns(self.pronouns_self_described)["s"] ) elif has_parsable_pronouns(pronoun): - pronouns_to_use.append( - parse_custom_pronouns(pronoun)["s"] - ) + pronouns_to_use.append(parse_custom_pronouns(pronoun)["s"]) if len(pronouns_to_use) > 0: output = "/".join(pronouns_to_use) else: