BIOSUtilities/common/text_ops.py
platomav f2be701423 Added Dell PFS Update Extractor v6.0_a1
Adjusted dependencies
2022-04-07 01:13:07 +03:00

6 lines
No EOL
155 B
Python

#!/usr/bin/env python3
#coding=utf-8
# Generate padding (spaces or tabs)
def padder(padd_count, tab=False):
return ('\t' if tab else ' ') * padd_count