rename Box3 -> OpenBox

This commit is contained in:
Florian Festi 2017-03-06 19:07:14 +01:00
parent 5026c2bc03
commit 47f3037e23
2 changed files with 3 additions and 3 deletions

View File

@ -16,8 +16,8 @@
from boxes import *
class Box3(Boxes):
"""Box with just 3 walls"""
class OpenBox(Boxes):
"""Box with top and front open"""
ui_group = "Box"
@ -53,7 +53,7 @@ class Box3(Boxes):
self.close()
def main():
b = Box3()
b = OpenBox()
b.parseArgs()
b.render()