Skip to content

Commit

Permalink
Fixed color data type
Browse files Browse the repository at this point in the history
  • Loading branch information
ceccopierangiolieugenio committed Nov 22, 2024
1 parent 39c9842 commit 5ceea8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TermTk/TTkCore/canvas.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ class TTkCanvas():
'_data', '_colors',
'_bufferedData', '_bufferedColors',
'_visible', '_transparent', '_doubleBuffer')
_data:list[str]
_colors:list[TTkColor]
_data:list[list[str]]
_colors:list[list[TTkColor]]
def __init__(self,
width:int=0,
height:int=0) -> None:
Expand Down

0 comments on commit 5ceea8d

Please sign in to comment.