Advertisement
Guest User

Untitled

a guest
Apr 16th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.57 KB | None | 0 0
  1. [pkrupa@pkrupa tmp]$ pylint launch_old.py
  2. No config file found, using default configuration
  3. ************* Module launch_old
  4. C: 17, 0: Unnecessary parens after 'print' keyword (superfluous-parens)
  5. C: 19, 0: Unnecessary parens after 'print' keyword (superfluous-parens)
  6. C: 1, 0: Missing module docstring (missing-docstring)
  7. C: 5, 0: Constant name "url" doesn't conform to UPPER_CASE naming style (invalid-name)
  8. C: 6, 0: Constant name "r" doesn't conform to UPPER_CASE naming style (invalid-name)
  9. C: 7, 0: Constant name "next_launch" doesn't conform to UPPER_CASE naming style (invalid-name)
  10. C: 9, 0: Constant name "video" doesn't conform to UPPER_CASE naming style (invalid-name)
  11. C: 10, 0: Constant name "mission" doesn't conform to UPPER_CASE naming style (invalid-name)
  12. C: 11, 0: Constant name "rocket" doesn't conform to UPPER_CASE naming style (invalid-name)
  13. C: 12, 0: Constant name "date" doesn't conform to UPPER_CASE naming style (invalid-name)
  14. C: 14, 0: Constant name "msg" doesn't conform to UPPER_CASE naming style (invalid-name)
  15.  
  16. -----------------------------------
  17. Your code has been rated at 0.83/10
  18.  
  19. [pkrupa@pkrupa tmp]$ pylint launch_new.py
  20. No config file found, using default configuration
  21. ************* Module launch_new
  22. C: 2, 0: Trailing whitespace (trailing-whitespace)
  23. C: 4, 0: Trailing whitespace (trailing-whitespace)
  24. C: 8, 0: Trailing whitespace (trailing-whitespace)
  25. C: 14, 0: Trailing whitespace (trailing-whitespace)
  26. C: 18, 0: Trailing whitespace (trailing-whitespace)
  27. C: 24, 0: Trailing whitespace (trailing-whitespace)
  28. C: 25, 0: Unnecessary parens after 'print' keyword (superfluous-parens)
  29. C: 1, 0: Missing module docstring (missing-docstring)
  30. C: 5, 0: Constant name "url" doesn't conform to UPPER_CASE naming style (invalid-name)
  31. C: 6, 0: Constant name "r" doesn't conform to UPPER_CASE naming style (invalid-name)
  32. C: 7, 0: Constant name "next_launch" doesn't conform to UPPER_CASE naming style (invalid-name)
  33. C: 9, 0: Constant name "video" doesn't conform to UPPER_CASE naming style (invalid-name)
  34. C: 10, 0: Constant name "vidURLs" doesn't conform to UPPER_CASE naming style (invalid-name)
  35. C: 11, 0: Constant name "mission" doesn't conform to UPPER_CASE naming style (invalid-name)
  36. C: 12, 0: Constant name "rocket" doesn't conform to UPPER_CASE naming style (invalid-name)
  37. C: 13, 0: Constant name "date" doesn't conform to UPPER_CASE naming style (invalid-name)
  38. C: 15, 0: Constant name "msg" doesn't conform to UPPER_CASE naming style (invalid-name)
  39. W: 21, 0: No exception type(s) specified (bare-except)
  40. C: 20, 4: Constant name "msg" doesn't conform to UPPER_CASE naming style (invalid-name)
  41. C: 23, 8: Constant name "msg" doesn't conform to UPPER_CASE naming style (invalid-name)
  42.  
  43. ------------------------------------
  44. Your code has been rated at -2.50/10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement