Fixed Extra Lines for Lint

This commit is contained in:
Metropass
2020-10-19 16:06:44 -04:00
parent d19d1de443
commit d0734fc7e9
2 changed files with 0 additions and 2 deletions

View File

@@ -1,7 +1,6 @@
from .__init__ import * from .__init__ import *
def decimalToOctalFunc(maxDecimal=4096): def decimalToOctalFunc(maxDecimal=4096):
x = random.randint(0, maxDecimal) x = random.randint(0, maxDecimal)
problem = "The decimal number " + str(x) + " in Octal is: " problem = "The decimal number " + str(x) + " in Octal is: "

View File

@@ -1,7 +1,6 @@
from .__init__ import * from .__init__ import *
def decimalToRomanNumeralsFunc(maxDecimal=4000): def decimalToRomanNumeralsFunc(maxDecimal=4000):
x = random.randint(0, maxDecimal) x = random.randint(0, maxDecimal)
problem = "The number " + str(x) + " in Roman Numerals is: " problem = "The number " + str(x) + " in Roman Numerals is: "