1
0
Fork 0
forked from josch/plakativ

Merge branch 'patch-1' into 'master'

Fix Issue #7, unit conversion bug.

Fixes #7 where inches to mm was accidentally inverted.

See merge request !2
This commit is contained in:
josch 2020-11-23 07:55:23 +00:00
commit 4f5a2e9ae6

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):