librelogo/source/LibreLogo/LibreLogo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 553e09879b1ed20f09224582ab904b6ab1646259 Author: Julien Nabet <serval2...@yahoo.fr> AuthorDate: Sun Sep 24 12:14:43 2023 +0200 Commit: Julien Nabet <serval2...@yahoo.fr> CommitDate: Sun Sep 24 13:32:45 2023 +0200 tdf#157388: LibreLogo sqrt undefined Change-Id: Ief68aa9067e3c817f9ce5694ce015ca9049b4375 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157206 Reviewed-by: Julien Nabet <serval2...@yahoo.fr> Tested-by: Jenkins diff --git a/librelogo/source/LibreLogo/LibreLogo.py b/librelogo/source/LibreLogo/LibreLogo.py index 1cab5ec96cb4..dca6356026bb 100644 --- a/librelogo/source/LibreLogo/LibreLogo.py +++ b/librelogo/source/LibreLogo/LibreLogo.py @@ -194,7 +194,7 @@ class __Doc__: self.fontstyle = 0 self.points = [] -from math import pi, sin, cos, asin, log10, hypot +from math import pi, sin, cos, asin, log10, hypot, sqrt from com.sun.star.awt import Point as __Point__ from com.sun.star.awt import Gradient as __Gradient__