New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Style Changes #55
Style Changes #55
Conversation
…ll sort alphabetically
This allows the default discover on unittest to work
continuation line with same indent as next logical line
continuation line over-indented for visual indent
continuation line under-indented for visual indent
whitespace after '('
whitespace before ')'
whitespace before ':'
multiple spaces before operator
missing whitespace around operator
missing whitespace after ':' missing whitespace after ','
at least two spaces before inline comment
trailing whitespace
blank line contains whitespace
expected 1 blank line, found 0
expected 2 blank lines, found 1 (above module level defined classes and functions)
too many blank lines
blank line at end of file
line too long (> 79 characters)
the backslash is redundant between brackets
statement ends with a semicolon
comparison to None should be 'if cond is None:' or 'if cond is not None:'
Sorted using `isort`. Sorted alphabetically, with sections for standard library, third-party, and then internal imports.
Allows monitoring to see how close we are to supporting these on these platforms.
Thanks for your patch. Had a quick look at it, seems to look good overall. I'll be out of town for a couple of days, will review it more thoroughly somewhere next week. |
1 blank line required after class docstring
No blank lines allowed after function docstring
First line should end with a period
Sounds great |
self.assertEqual(self.errors, "") | ||
|
||
def test_add_dep4(self): | ||
def test_add_de04(self): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's a typo here.
Looks great, will merge it despite the minor typo. Thanks a lot for your effort to fix those style issues. |
Adhere to standards introduced with topydo#55
Adhere to standards introduced with topydo#55
Adhere to standards introduced with topydo#55
See pull request topydo#55
This is all the style changes split out of PR #52.
There should be no substantial code changes, just style fixes.
Issues addressed:
topydo
is to running on those platformsunittest
's default auto-discovery to work