Add separating comments

This commit is contained in:
Florian Festi 2016-04-10 22:51:25 +02:00
parent 0e5e344c46
commit 1115683449
1 changed files with 10 additions and 0 deletions

View File

@ -22,6 +22,8 @@ import re
from functools import wraps
from boxes import edges
### Helpers
def dist(dx, dy):
"""
Return distance
@ -92,6 +94,10 @@ class NutHole:
self.boxes.edge(side)
self.boxes.corner(-60)
##############################################################################
### Argument types
##############################################################################
def argparseSections(s):
"""
Parse sections parameter
@ -113,6 +119,10 @@ def argparseSections(s):
except ValueError:
raise argparse.ArgumentTypeError("Don't understand sections string")
##############################################################################
### Main class
##############################################################################
class Boxes:
"""Main class -- Generator should sub class this """