Skip to content

Commit

Permalink
corrected kg to lb conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
deefrawley committed Sep 15, 2021
1 parent abfd081 commit 38b1d53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/units.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
["gm", _("gram"), _("grams"), "x * 1", "x * 1"],
# All below convert to/from base
["kg", _("kilogram"), _("kilograms"), "x / 0.001", "x * 0.001"],
["lb", _("pound"), _("pounds"), "x / 0.002205", "x * 0.001"],
["lb", _("pound"), _("pounds"), "x / 0.002205", "x * 0.002205"],
["oz", _("ounce"), _("ounces"), "x / 0.035274", " 0.035274"],
["st", _("stone"), _("stone"), "x / 0.000157473", "x * 0.000157473"],
[
Expand Down

0 comments on commit 38b1d53

Please sign in to comment.