SeaCogs/bible/models.py
SeaswimmerTheFsh 3813d3de02
Some checks failed
Actions / Lint Code (Pylint) (push) Failing after 16s
Actions / Build Documentation (MkDocs) (push) Successful in 13s
feat(bible): added bible translation to the output of bible random and bible passage
2024-02-02 12:43:09 -05:00

12 lines
387 B
Python

class Version:
def __init__(
self, abbreviation, language, abbreviationLocal, languageLocal, copyright
):
self.abbreviation = abbreviation
self.language = language
self.abbreviationLocal = abbreviationLocal
self.languageLocal = languageLocal
self.copyright = copyright
def __str__(self):
return self.abbreviationLocal