From 7605c740aafd0f9dd96f88edbec34b2fb045f3bf Mon Sep 17 00:00:00 2001 From: Kaelin Laundry Date: Sun, 29 Jul 2018 16:57:12 -0700 Subject: [PATCH] Update docs links in display class --- ev3dev2/display.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ev3dev2/display.py b/ev3dev2/display.py index cf863e3..f8c2643 100644 --- a/ev3dev2/display.py +++ b/ev3dev2/display.py @@ -383,7 +383,7 @@ def text_pixels(self, text, clear_screen=True, x=0, y=0, text_color='black', fon https://www.w3schools.com/colors/colors_names.asp 'font' : can be any font displayed here - http://ev3dev-lang.readthedocs.io/projects/python-ev3dev/en/stable/other.html#bitmap-fonts + http://ev3dev-lang.readthedocs.io/projects/python-ev3dev/en/ev3dev-stretch/other.html#bitmap-fonts """ if clear_screen: @@ -409,7 +409,7 @@ def text_grid(self, text, clear_screen=True, x=0, y=0, text_color='black', font= https://www.w3schools.com/colors/colors_names.asp 'font' : can be any font displayed here - http://ev3dev-lang.readthedocs.io/projects/python-ev3dev/en/stable/other.html#bitmap-fonts + http://ev3dev-lang.readthedocs.io/projects/python-ev3dev/en/ev3dev-stretch/other.html#bitmap-fonts """ assert 0 <= x < Display.GRID_COLUMNS,\