From d0734fc7e9b74fc5da1b9cc734a0fe81179454b9 Mon Sep 17 00:00:00 2001 From: Metropass Date: Mon, 19 Oct 2020 16:06:44 -0400 Subject: [PATCH] Fixed Extra Lines for Lint --- mathgenerator/funcs/decimalToOctalFunc.py | 1 - mathgenerator/funcs/decimalToRomanNumeralsFunc.py | 1 - 2 files changed, 2 deletions(-) diff --git a/mathgenerator/funcs/decimalToOctalFunc.py b/mathgenerator/funcs/decimalToOctalFunc.py index e24b796..64bbae4 100644 --- a/mathgenerator/funcs/decimalToOctalFunc.py +++ b/mathgenerator/funcs/decimalToOctalFunc.py @@ -1,7 +1,6 @@ from .__init__ import * - def decimalToOctalFunc(maxDecimal=4096): x = random.randint(0, maxDecimal) problem = "The decimal number " + str(x) + " in Octal is: " diff --git a/mathgenerator/funcs/decimalToRomanNumeralsFunc.py b/mathgenerator/funcs/decimalToRomanNumeralsFunc.py index 3d2904e..c7183c3 100644 --- a/mathgenerator/funcs/decimalToRomanNumeralsFunc.py +++ b/mathgenerator/funcs/decimalToRomanNumeralsFunc.py @@ -1,7 +1,6 @@ from .__init__ import * - def decimalToRomanNumeralsFunc(maxDecimal=4000): x = random.randint(0, maxDecimal) problem = "The number " + str(x) + " in Roman Numerals is: "