Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 5.77 KB | None | 0 0
  1. test.py:25:0: C0303: Trailing whitespace (trailing-whitespace)
  2. test.py:31:0: C0303: Trailing whitespace (trailing-whitespace)
  3. test.py:43:0: C0303: Trailing whitespace (trailing-whitespace)
  4. test.py:48:37: C0303: Trailing whitespace (trailing-whitespace)
  5. test.py:49:0: C0303: Trailing whitespace (trailing-whitespace)
  6. test.py:54:37: C0303: Trailing whitespace (trailing-whitespace)
  7. test.py:55:0: C0303: Trailing whitespace (trailing-whitespace)
  8. test.py:73:0: C0330: Wrong continued indentation (remove 3 spaces).
  9.                         value=ctx.message.author.display_name)
  10.                      |  ^ (bad-continuation)
  11. test.py:94:0: C0303: Trailing whitespace (trailing-whitespace)
  12. test.py:110:0: C0330: Wrong continued indentation (remove 3 spaces).
  13.                         value=ctx.message.author.display_name)
  14.                      |  ^ (bad-continuation)
  15. test.py:115:0: C0303: Trailing whitespace (trailing-whitespace)
  16. test.py:118:42: C0326: Exactly one space required around keyword argument assignment
  17. async def mute(ctx, member: discord.Member=None):
  18.                                           ^ (bad-whitespace)
  19. test.py:120:0: W0311: Bad indentation. Found 6 spaces, expected 8 (bad-indentation)
  20. test.py:121:0: W0311: Bad indentation. Found 6 spaces, expected 8 (bad-indentation)
  21. test.py:126:0: W0311: Bad indentation. Found 6 spaces, expected 8 (bad-indentation)
  22. test.py:127:0: W0311: Bad indentation. Found 6 spaces, expected 8 (bad-indentation)
  23. test.py:128:0: W0311: Bad indentation. Found 6 spaces, expected 8 (bad-indentation)
  24. test.py:129:0: C0303: Trailing whitespace (trailing-whitespace)
  25. test.py:146:0: C0303: Trailing whitespace (trailing-whitespace)
  26. test.py:147:0: C0303: Trailing whitespace (trailing-whitespace)
  27. test.py:154:0: C0303: Trailing whitespace (trailing-whitespace)
  28. test.py:157:30: C0303: Trailing whitespace (trailing-whitespace)
  29. test.py:187:27: C0326: No space allowed before :
  30. async def yeet(ctx, member : discord.Member= None):
  31.                            ^ (bad-whitespace)
  32. test.py:187:43: C0326: Exactly one space required before keyword argument assignment
  33. async def yeet(ctx, member : discord.Member= None):
  34.                                            ^ (bad-whitespace)
  35. test.py:192:32: C0326: No space allowed before :
  36. async def IdleGuild(ctx, member : discord.Member= None):
  37.                                 ^ (bad-whitespace)
  38. test.py:192:48: C0326: Exactly one space required before keyword argument assignment
  39. async def IdleGuild(ctx, member : discord.Member= None):
  40.                                                 ^ (bad-whitespace)
  41. test.py:197:28: C0326: No space allowed before :
  42. async def hello(ctx, member : discord.Member= None):
  43.                             ^ (bad-whitespace)
  44. test.py:197:44: C0326: Exactly one space required before keyword argument assignment
  45. async def hello(ctx, member : discord.Member= None):
  46.                                             ^ (bad-whitespace)
  47. test.py:200:0: C0303: Trailing whitespace (trailing-whitespace)
  48. test.py:202:37: C0326: No space allowed before :
  49. async def overrideenable(ctx, member : discord.Member= None):
  50.                                      ^ (bad-whitespace)
  51. test.py:202:53: C0326: Exactly one space required before keyword argument assignment
  52. async def overrideenable(ctx, member : discord.Member= None):
  53.                                                      ^ (bad-whitespace)
  54. test.py:207:38: C0326: No space allowed before :
  55. async def overridedisable(ctx, member : discord.Member= None):
  56.                                       ^ (bad-whitespace)
  57. test.py:207:54: C0326: Exactly one space required before keyword argument assignment
  58. async def overridedisable(ctx, member : discord.Member= None):
  59.                                                       ^ (bad-whitespace)
  60. test.py:239:0: C0303: Trailing whitespace (trailing-whitespace)
  61. test.py:242:30: C0326: No space allowed before :
  62. async def support(ctx, member : discord.Member= None):
  63.                               ^ (bad-whitespace)
  64. test.py:242:46: C0326: Exactly one space required before keyword argument assignment
  65. async def support(ctx, member : discord.Member= None):
  66.                                               ^ (bad-whitespace)
  67. test.py:244:84: C0303: Trailing whitespace (trailing-whitespace)
  68. test.py:263:0: C0303: Trailing whitespace (trailing-whitespace)
  69. test.py:1:0: C0111: Missing module docstring (missing-docstring)
  70. test.py:212:0: W0622: Redefining built-in 'help' (redefined-builtin)
  71. test.py:8:0: C0103: Constant name "bot" doesn't conform to UPPER_CASE naming style (invalid-name)
  72. test.py:66:7: C0121: Comparison to True should be just 'expr' (singleton-comparison)
  73. test.py:71:8: C0103: Variable name "dm" doesn't conform to snake_case naming style (invalid-name)
  74. test.py:101:7: C0121: Comparison to True should be just 'expr' (singleton-comparison)
  75. test.py:106:8: C0103: Variable name "dm" doesn't conform to snake_case naming style (invalid-name)
  76. test.py:122:4: R1705: Unnecessary "else" after "return" (no-else-return)
  77. test.py:192:0: C0103: Function name "IdleGuild" doesn't conform to snake_case naming style (invalid-name)
  78. test.py:3:0: W0611: Unused import asyncio (unused-import)
  79. test.py:4:0: W0611: Unused import random (unused-import)
  80. test.py:5:0: W0611: Unused tasks imported from discord.ext (unused-import)
  81. test.py:6:0: W0611: Unused cycle imported from itertools (unused-import)
  82. test.py:2:0: C0411: standard import "import os" should be placed before "import discord" (wrong-import-order)
  83. test.py:3:0: C0411: standard import "import asyncio" should be placed before "import discord" (wrong-import-order)
  84. test.py:4:0: C0411: standard import "import random" should be placed before "import discord" (wrong-import-order)
  85. test.py:6:0: C0411: standard import "from itertools import cycle" should be placed before "import discord" (wrong-import-order)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement