Skip to content

Commit

Permalink
Fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
srowen committed Aug 15, 2024
1 parent 2b2c0fb commit 114310a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion streaming/base/format/base/writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ def exception_callback(self, future: Future) -> None:
self.event.set()
# log exception; raising does not propagate to caller as this is called
# from Future thread and would just be logged as an unexpected error
logger.error(f"Exception in writer thread: {exception}")
logger.error(f'Exception in writer thread: {exception}')

def __enter__(self) -> Self:
"""Enter context manager.
Expand Down

0 comments on commit 114310a

Please sign in to comment.