6 lines
99 B
Python
6 lines
99 B
Python
Unit = ()
|
|
|
|
|
|
def indent(level, size=2):
|
|
"""Return indentation."""
|
|
return ' ' * level * size
|