We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
e.g. (a stripped down example from google-cloud-python) in the file f.py
google-cloud-python
f.py
def _get_pb_likelihood(value): return 42.125 def f(cls, image): values = [image.adult, image.spoof, image.medical, image.violence] classifications = map(_get_pb_likelihood, values) return cls(*classifications)
which gives:
$ pycodestyle f.py checking f.py f.py:7:5: E306 expected 1 blank line before a nested definition, found 0
The text was updated successfully, but these errors were encountered:
2.3.1 was just released fixing issues with E302 and E306.
Sorry, something went wrong.
Thanks a lot @sigmavirus24. Sorry I didn't notice #618 and #620
No worries.
No branches or pull requests
e.g. (a stripped down example from
google-cloud-python
) in the filef.py
which gives:
The text was updated successfully, but these errors were encountered: