PEP8ΒΆ

../_images/pep8.png

Like most Python projects, we try to adhere to PEP 8 (Style Guide for Python Code) and PEP 257 (Docstring Conventions) with the modifications documented in the ObsPy Coding Style Guide. Be sure to read those documents if you intend to contribute code to ObsPy.

Here are the results of the automatic PEP 8 syntax checker:

Statistic

Count PEP 8 message string
3 E111 indentation is not a multiple of four
1 W293 blank line contains whitespace

Warnings

obspy/mseed/tests/test_mseed_special_issues.py:521:11: E111 indentation is not a multiple of four
obspy/mseed/tests/test_mseed_special_issues.py:522:11: E111 indentation is not a multiple of four
obspy/mseed/tests/test_mseed_special_issues.py:523:11: E111 indentation is not a multiple of four
obspy/mseed/tests/test_mseed_special_issues.py:525:1: W293 blank line contains whitespace

This Page