Skip to content

Commit

Permalink
Removed log line.
Browse files Browse the repository at this point in the history
  • Loading branch information
jimdeekepler committed Apr 26, 2024
1 parent 50bce68 commit eab311d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion scrolltext/linescroller.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ def _build_smooth_colortable(color_table):

def _apply_colors(win_text, cnt, colortable, colortable_size):
color_index = cnt % colortable_size
log.debug("color-index: %d color-code: %s", color_index, colortable[color_index])
new_text = ""
for ch in win_text:
new_text += f"\033[{colortable[color_index]}" + ch
Expand Down

0 comments on commit eab311d

Please sign in to comment.