Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • A autojump
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 158
    • Issues 158
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 54
    • Merge requests 54
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • William Ting
  • autojump
  • Merge requests
  • !141

Format to conform to PEP 8

  • Review changes

  • Download
  • Email patches
  • Plain diff
Closed Administrator requested to merge github/fork/myint/pep8 into master Jul 30, 2012
  • Overview 1
  • Commits 1
  • Pipelines 0
  • Changes 3

Created by: myint

Before:

$ pep8 --statistics .
1       E125 continuation line does not distinguish itself from next logical line
3       E127 continuation line over-indented for visual indent
11      E128 continuation line under-indented for visual indent
1       E203 whitespace before ':'
21      E225 missing whitespace around operator
13      E231 missing whitespace after ','
10      E251 no spaces around keyword / parameter equals
4       E261 at least two spaces before inline comment
1       E301 expected 1 blank line, found 0
12      E302 expected 2 blank lines, found 1
22      E501 line too long (80 > 79 characters)
5       E701 multiple statements on one line (colon)

After:

$ pep8 --statistics .
11      E501 line too long (80 > 79 characters)

I ran the tests to confirm that they pass.

Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: github/fork/myint/pep8