Fixed Lint Formatting

This commit is contained in:
Metropass
2020-10-19 16:04:53 -04:00
parent 429ea62518
commit d19d1de443
2 changed files with 7 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
from .__init__ import * from .__init__ import *
#converts decimal into octal
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,7 @@
from .__init__ import * from .__init__ import *
#converts decimal to roman numerals
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: "