Make name follow style convention
This commit is contained in:
parent
f5e5e365d4
commit
9fb366aaab
|
@ -27,7 +27,7 @@ class Generator:
|
||||||
def __init__(self, params: dict = DEFAULT_PARAMS):
|
def __init__(self, params: dict = DEFAULT_PARAMS):
|
||||||
self.params = params
|
self.params = params
|
||||||
|
|
||||||
def createCircularRoom(self):
|
def create_circular_room(self):
|
||||||
if random() < self.params["large_circular_room"]:
|
if random() < self.params["large_circular_room"]:
|
||||||
r = randint(5, 10)**2
|
r = randint(5, 10)**2
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue