Skip to content

Commit

Permalink
fix : __word2art function updated #189
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Dec 9, 2021
1 parent 719309d commit f19fce6
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions art/art.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,11 +461,6 @@ def __word2art(word, font, chr_ignore, letters, next_word, sep="\n"):
for i in range(len(split_list[0])):
temp = ""
for j, item in enumerate(split_list):
if j > 0 and (
i == 1 or i == len(
split_list[0]) -
2) and font == "block":
temp = temp + " "
temp = temp + item[i]
result_list.append(temp)
result = (splitter).join(result_list)
Expand Down

0 comments on commit f19fce6

Please sign in to comment.