From 6743ee826167adf600836885d14630f39c2bfa71 Mon Sep 17 00:00:00 2001 From: Daniel Weschke Date: Fri, 20 Dec 2019 12:34:21 +0100 Subject: [PATCH] add missing math import --- pylib/mathematics.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pylib/mathematics.py b/pylib/mathematics.py index b8ff0c7..a2298d3 100644 --- a/pylib/mathematics.py +++ b/pylib/mathematics.py @@ -10,6 +10,7 @@ .. moduleauthor:: Daniel Weschke """ +import math from math import gcd def lcm(a, b):