diff --git a/mathgenerator/funcs/computer_science/decimal_to_binary.py b/mathgenerator/funcs/computer_science/decimal_to_binary.py index 133afe3..c9926c9 100644 --- a/mathgenerator/funcs/computer_science/decimal_to_binary.py +++ b/mathgenerator/funcs/computer_science/decimal_to_binary.py @@ -14,5 +14,6 @@ def DecimalToBinaryFunc(max_dec=99, format='string'): else: return a, str(b) + decimal_to_binary = Generator("Decimal to Binary", 14, DecimalToBinaryFunc, ["max_dec=99"])