mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 14:35:23 +01:00
Fixed Extra Lines for Lint
This commit is contained in:
@@ -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: "
|
||||||
|
|||||||
@@ -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: "
|
||||||
|
|||||||
Reference in New Issue
Block a user