Skip to content
Snippets Groups Projects
  1. Apr 05, 2016
  2. Apr 04, 2016
  3. Apr 02, 2016
  4. Feb 23, 2016
  5. Nov 23, 2015
  6. Mar 14, 2015
  7. Feb 07, 2015
  8. Jan 23, 2015
  9. Jan 22, 2015
  10. Jan 20, 2015
    • Lucas Morales's avatar
      Styled for PEP8 and Pylint · 31fdbe7e
      Lucas Morales authored
      PEP8:
      
          $ pep8 joe/joe.py
          joe/joe.py:36:1: E302 expected 2 blank lines, found 0
          joe/joe.py:45:43: E502 the backslash is redundant between brackets
          joe/joe.py:46:17: E127 continuation line over-indented for visual indent
          joe/joe.py:91:79: E502 the backslash is redundant between brackets
          joe/joe.py:92:50: E127 continuation line over-indented for visual indent
      
      Pylint:
      
          $ pylint joe/joe.py
          ************* Module joe.joe
          C:107, 0: Unnecessary parens after 'if' keyword (superfluous-parens)
          C:109, 0: Unnecessary parens after 'elif' keyword (superfluous-parens)
          W:  1, 0: Anomalous backslash in string: '\ '. String constant might be
          missing an r prefix. (anomalous-backslash-in-string)
          W:  1, 0: Anomalous backslash in string: '\_'. String constant might be
          missing an r prefix. (anomalous-backslash-in-string)
          W:  1, 0: Anomalous backslash in string: '\_'. String constant might be
          missing an r prefix. (anomalous-backslash-in-string)
          W:  1, 0: Anomalous backslash in string: '\_'. String constant might be
          missing an r prefix. (anomalous-backslash-in-string)
          W: 46,20: Redefining name 'f' from outer scope (line 54)
          (redefined-outer-name)
          C: 43, 4: Invalid variable name "l" (invalid-name)
          C: 44,14: Invalid variable name "subFolders" (invalid-name)
          C: 45, 8: Invalid variable name "l" (invalid-name)
          W: 44,14: Unused variable 'subFolders' (unused-variable)
          W: 44, 8: Unused variable 'root' (unused-variable)
          W: 64, 4: Redefining built-in 'exit' (redefined-builtin)
          W: 64, 4: Unused variable 'exit' (unused-variable)
          W: 97,31: Redefining name 'f' from outer scope (line 54)
          (redefined-outer-name)
          C: 97,31: Invalid variable name "f" (invalid-name)
          C:104, 0: Missing function docstring (missing-docstring)
          W: 27, 0: Unused import sys (unused-import)
      31fdbe7e
    • Karan Goel's avatar
      Merge pull request #20 from 0xAX/indentation-fix · 849fe830
      Karan Goel authored
      Usage string indentation fix
      849fe830
  11. Jan 19, 2015
  12. Jan 15, 2015
Loading