Keep comments consistent with other before/after comments

This commit is contained in:
LightSage
2022-03-15 06:25:35 -05:00
committed by GitHub
parent 8ced1143e3
commit c28c3f4440

View File

@@ -851,12 +851,11 @@ Therefore, ``Embed.Empty`` has been removed in favour of ``None``.
.. code-block:: python
# Before
# before
embed = discord.Embed(title='foo')
embed.title = discord.Embed.Empty
# After
# after
embed = discord.Embed(title='foo')
embed.title = None