diff --git a/mathgenerator/funcs/decimal_to_bcd.py b/mathgenerator/funcs/decimal_to_bcd.py index 2f5eb79..5805987 100644 --- a/mathgenerator/funcs/decimal_to_bcd.py +++ b/mathgenerator/funcs/decimal_to_bcd.py @@ -4,7 +4,7 @@ from .__init__ import * def DecimalToBCDFunc(maxNumber=10000): n = random.randint(1000, maxNumber) x = n - binstring = '' + # binstring = '' bcdstring = '' while x > 0: nibble = x % 16