Fixed Linter for the Function Definition

This commit is contained in:
Mo
2020-10-20 14:01:29 -04:00
committed by GitHub
parent 54e3249c7d
commit 0c17fc74b0

View File

@@ -2,7 +2,7 @@ from .__init__ import *
from ..__init__ import Generator from ..__init__ import Generator
def perimeter_of_polygons(maxSides=12, maxLength=120)->"cm": def perimeterOfPolygons(maxSides=12, maxLength=120):
size_of_sides = random.randint(3, maxSides) size_of_sides = random.randint(3, maxSides)
sides = [] sides = []
for x in range(size_of_sides): for x in range(size_of_sides):