Skip to content

Commit

Permalink
fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsteers committed Sep 20, 2024
1 parent 8adc080 commit bb485ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion airbyte/progress.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,8 @@ def log_stream_start(self, stream_name: str) -> None:
"""Log that a stream has started reading."""
if stream_name not in self.stream_read_start_times:
self._print_info_message(
f"Read started on stream `{stream_name}` at `{pendulum.now().format('HH:mm:ss')}`..."
f"Read started on stream `{stream_name}` at "
f"`{pendulum.now().format('HH:mm:ss')}`..."
)
self.stream_read_start_times[stream_name] = time.time()

Expand Down

0 comments on commit bb485ec

Please sign in to comment.