1
0
Fork 0
forked from josch/plakativ

Fix Issue #7, unit conversion bug.

This commit is contained in:
Dave 2020-11-22 23:34:00 +00:00
parent 7a951f1b31
commit 65d4cab1ff

View file

@ -99,7 +99,7 @@ def cm_to_mm(length):
def in_to_mm(length):
return length / 25.4
return length * 25.4
def pt_to_mm(length):