master
Lukas Schulz 2020-12-20 00:20:04 +01:00
parent d04f2cb563
commit 14fce78a8f
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ def showImage(image, offset_x = 0, offset_y = 0):
def drawCanvas():
canvas = Image.new('RGB', (192, 128), color = 'red')
canvas = canvas.paste(get.track(),(0,0))
canvas = canvas.paste(get_track(),(0,0))
showImage(canvas)