forked from blizzthewolf/SeaCogs
fix(bible): fixed repr formatting for the Version model
This commit is contained in:
parent
0ccad57476
commit
ad2cf39e3e
1 changed files with 1 additions and 1 deletions
|
@ -19,4 +19,4 @@ class Version:
|
||||||
return self.abbreviationLocal
|
return self.abbreviationLocal
|
||||||
|
|
||||||
def __repr__(self):
|
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}")'
|
||||||
|
|
Loading…
Reference in a new issue