Source code for pyexlatex.models.references.bibtex.addresource

from pyexlatex.models.item import SimpleItem

[docs]class AddBibResource(SimpleItem): name = 'addbibresource'
[docs] def __init__(self, bib_path: str): super().__init__(self.name, bib_path)