mirror of
https://github.com/platomav/BIOSUtilities.git
synced 2025-05-15 07:34:45 -04:00
6 lines
No EOL
145 B
Python
6 lines
No EOL
145 B
Python
#!/usr/bin/env python3
|
|
#coding=utf-8
|
|
|
|
# Generate padding (spaces or tabs)
|
|
def padder(count, tab=False):
|
|
return ('\t' if tab else ' ') * count |