fix(bible): fixed repr formatting for the Version model

This commit is contained in:
Seaswimmer 2024-02-02 13:07:56 -05:00
parent 0ccad57476
commit ad2cf39e3e
Signed by untrusted user: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -19,4 +19,4 @@ class Version:
return self.abbreviationLocal
def __repr__(self):
return f"bible.models.Version({self.bible_id}, {self.abbreviation}, {self.language}, {self.abbreviationLocal}, {self.languageLocal}, {self.copyright})"
return f'bible.models.Version("{self.bible_id}", "{self.abbreviation}", "{self.language}", "{self.abbreviationLocal}", "{self.languageLocal}", "{self.copyright}")'