Skip to content

Commit

Permalink
pylint (Python 3.9)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaspardpetit committed Jan 9, 2025
1 parent 7090daa commit 6eb4bb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions verbatim/transcript/format/json_dlm.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ def close(self):
def write(
self,
utterance: Utterance,
unacknowledged_utterance: List[Utterance] | None = None,
unconfirmed_words: List[Word] | None = None,
unacknowledged_utterance: Union[List[Utterance],None] = None,
unconfirmed_words: Union[List[Word],None] = None,
):
text = utterance.text.strip()
# Convert speaker IDs
Expand Down

0 comments on commit 6eb4bb1

Please sign in to comment.