[EmbedPeek] Add line return for dict content

This commit is contained in:
aikaterna
2021-02-27 20:25:42 -08:00
parent 24c154eedb
commit c3f5dc0feb

View File

@@ -73,6 +73,7 @@ class EmbedPeek(commands.Cog):
msg += "\n" msg += "\n"
elif isinstance(v, dict): elif isinstance(v, dict):
msg += self._dict_cleaner(v) msg += self._dict_cleaner(v)
msg += "\n"
else: else:
msg += f"{str(v)}\n\n" msg += f"{str(v)}\n\n"