Skip to content

Commit eefcc09

Browse files
bites 162 - remove irrelevant comment
1 parent 11dcb9e commit eefcc09

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

162/fill.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,4 @@
33

44
def prefill_with_character(value, column_length=4, fill_char=HTML_SPACE):
55
"""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")
6+
return (column_length-len(str(value)))*fill_char+str(value)

0 commit comments

Comments
 (0)