We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11dcb9e commit eefcc09Copy full SHA for eefcc09
162/fill.py
@@ -3,6 +3,4 @@
3
4
def prefill_with_character(value, column_length=4, fill_char=HTML_SPACE):
5
"""Prepend value with fill_char for given column_length"""
6
- return (column_length-len(str(value)))*fill_char+str(value)
7
-
8
-# prefill_with_character("cxxx")
+ return (column_length-len(str(value)))*fill_char+str(value)
0 commit comments