From b760880d29968adf3ca75c632f9fd11e0638f66c Mon Sep 17 00:00:00 2001 From: lukew3 Date: Wed, 6 Oct 2021 12:36:01 -0400 Subject: [PATCH] minor lint fix --- mathgenerator/funcs/computer_science/decimal_to_binary.py | 1 + 1 file changed, 1 insertion(+) 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"])