Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
fix: citation syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
dsdanielpark committed Jan 19, 2024
1 parent b7369c7 commit 7606246
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bardapi/models/citation.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class DraftCitation:

def __init__(self, input_list: list, text: str):
self._input_list = input_list
self.span: tuple[int, int] = self._input_list[0], self._input_list[1]
self.span: tuple[int, int] = (self._input_list[0], self._input_list[1])
if self.span[0] is None or self.span[1] is None:
self.text = ""
else:
Expand Down

0 comments on commit 7606246

Please sign in to comment.