diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2023-09-24 12:14:43 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2023-09-24 13:32:45 +0200 |
commit | 553e09879b1ed20f09224582ab904b6ab1646259 (patch) | |
tree | 814a2ddd20a7ec449f698e7219d4e9cabfca9cd9 /librelogo | |
parent | be637958995db309782c7e1a8cc4a80a5d30c9a6 (diff) |
tdf#157388: LibreLogo sqrt undefined
Change-Id: Ief68aa9067e3c817f9ce5694ce015ca9049b4375
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157206
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Jenkins
Diffstat (limited to 'librelogo')
-rw-r--r-- | librelogo/source/LibreLogo/LibreLogo.py | 2 |
1 files changed, 1 insertions, 1 deletions
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__ |