@@ -701,7 +701,9 @@ async def adduser(self, ctx, *users: Union[discord.Member, str]):
701
701
if not silent :
702
702
em = discord .Embed (
703
703
title = self .bot .config ["private_added_to_group_title" ],
704
- description = self .bot .config ["private_added_to_group_description" ].format (moderator = ctx .author ),
704
+ description = self .bot .config ["private_added_to_group_description" ].format (
705
+ moderator = ctx .author
706
+ ),
705
707
color = self .bot .main_color ,
706
708
)
707
709
if self .bot .config ["show_timestamp" ]:
@@ -712,7 +714,9 @@ async def adduser(self, ctx, *users: Union[discord.Member, str]):
712
714
713
715
em = discord .Embed (
714
716
title = self .bot .config ["public_added_to_group_title" ],
715
- description = self .bot .config ["private_added_to_group_description" ].format (moderator = ctx .author , users = ', ' .join (u .name for u in users )),
717
+ description = self .bot .config ["private_added_to_group_description" ].format (
718
+ moderator = ctx .author , users = ", " .join (u .name for u in users )
719
+ ),
716
720
color = self .bot .main_color ,
717
721
)
718
722
if self .bot .config ["show_timestamp" ]:
@@ -767,7 +771,9 @@ async def removeuser(self, ctx, *users: Union[discord.Member, str]):
767
771
if not silent :
768
772
em = discord .Embed (
769
773
title = self .bot .config ["private_removed_from_group_title" ],
770
- description = self .bot .config ["private_removed_from_group_description" ].format (moderator = ctx .author ),
774
+ description = self .bot .config ["private_removed_from_group_description" ].format (
775
+ moderator = ctx .author
776
+ ),
771
777
color = self .bot .main_color ,
772
778
)
773
779
if self .bot .config ["show_timestamp" ]:
@@ -778,7 +784,9 @@ async def removeuser(self, ctx, *users: Union[discord.Member, str]):
778
784
779
785
em = discord .Embed (
780
786
title = self .bot .config ["public_removed_from_group_title" ],
781
- description = self .bot .config ["private_removed_from_group_description" ].format (moderator = ctx .author , users = ', ' .join (u .name for u in users )),
787
+ description = self .bot .config ["private_removed_from_group_description" ].format (
788
+ moderator = ctx .author , users = ", " .join (u .name for u in users )
789
+ ),
782
790
color = self .bot .main_color ,
783
791
)
784
792
if self .bot .config ["show_timestamp" ]:
@@ -845,7 +853,9 @@ async def anonadduser(self, ctx, *users: Union[discord.Member, str]):
845
853
846
854
em = discord .Embed (
847
855
title = self .bot .config ["public_added_to_group_title" ],
848
- description = self .bot .config ["private_added_to_group_description_anon" ].format (moderator = ctx .author , users = ', ' .join (u .name for u in users )),
856
+ description = self .bot .config ["private_added_to_group_description_anon" ].format (
857
+ moderator = ctx .author , users = ", " .join (u .name for u in users )
858
+ ),
849
859
color = self .bot .main_color ,
850
860
)
851
861
if self .bot .config ["show_timestamp" ]:
@@ -900,7 +910,9 @@ async def anonremoveuser(self, ctx, *users: Union[discord.Member, str]):
900
910
if not silent :
901
911
em = discord .Embed (
902
912
title = self .bot .config ["private_removed_from_group_title" ],
903
- description = self .bot .config ["private_removed_from_group_description_anon" ].format (moderator = ctx .author ),
913
+ description = self .bot .config ["private_removed_from_group_description_anon" ].format (
914
+ moderator = ctx .author
915
+ ),
904
916
color = self .bot .main_color ,
905
917
)
906
918
if self .bot .config ["show_timestamp" ]:
@@ -922,7 +934,9 @@ async def anonremoveuser(self, ctx, *users: Union[discord.Member, str]):
922
934
923
935
em = discord .Embed (
924
936
title = self .bot .config ["public_removed_from_group_title" ],
925
- description = self .bot .config ["private_removed_from_group_description" ].format (moderator = ctx .author , users = ', ' .join (u .name for u in users )),
937
+ description = self .bot .config ["private_removed_from_group_description" ].format (
938
+ moderator = ctx .author , users = ", " .join (u .name for u in users )
939
+ ),
926
940
color = self .bot .main_color ,
927
941
)
928
942
if self .bot .config ["show_timestamp" ]:
0 commit comments