Rename Box -> ClosedBox

This commit is contained in:
Florian Festi 2017-03-06 18:52:19 +01:00
parent 5956182328
commit 75b7724255
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@
from boxes import *
class Box(Boxes):
class ClosedBox(Boxes):
"""Fully closed box"""
ui_group = "Box"
@ -56,7 +56,7 @@ class Box(Boxes):
def main():
b = Box()
b = ClosedBox()
b.parseArgs()
b.render()