Skip to content

Commit

Permalink
why were these capped at all?
Browse files Browse the repository at this point in the history
I'm probably about to find out.
  • Loading branch information
DigiDuncan committed Dec 2, 2023
1 parent eeb0afc commit 5be33ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sizebot/lib/units.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ class SV(Dimension):
"""Size Value (length in meters)"""
_units = UnitRegistry()
_systems = {}
_infinity = Decimal("8.79848e53")
_infinity = Decimal("1e100")

@classmethod
def getQuantityPair(cls, s):
Expand Down Expand Up @@ -527,7 +527,7 @@ class WV(Dimension):
"""Weight Value (mass in grams)"""
_units = UnitRegistry()
_systems = {}
_infinity = Decimal("3.4e84")
_infinity = Decimal("1e1000")

@classmethod
def getQuantityPair(cls, s):
Expand Down

0 comments on commit 5be33ed

Please sign in to comment.