Skip to content

Commit

Permalink
fix(emoji): end of string parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
mdsanima committed Jul 4, 2021
1 parent d325764 commit 9ef92e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mdsanima_dev/emoji.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ def emo_all(self, number: bool = False, names: bool = False) -> str:
emo_emo = str(e_head[key_bh][key_mh][name]['emoji'])
check = (self.mds('[', 197, ''),\
self.mds(emo_num, 62, ' -> '),\
self.mds(emo_emo, ends=''),\
self.mds(emo_emo, end=''),\
self.mds(']', 197, '')) if number else print(emo_emo,\
end='')
check_name = (print(' => ', end=''),\
Expand Down

0 comments on commit 9ef92e0

Please sign in to comment.