https://github.com/GPflow/GPflow
Revision 7275533aa0e9a2a263405972d3b81963452d917a authored by elvijs on 10 February 2020, 08:50:03 UTC, committed by GitHub on 10 February 2020, 08:50:02 UTC
This way, any consumers using MyPy will be able to get type hints from GPflow
1 parent f30d42c
Raw File
Tip revision: 7275533aa0e9a2a263405972d3b81963452d917a authored by elvijs on 10 February 2020, 08:50:03 UTC
Ship type information as specified by PEP 561 (#1251)
Tip revision: 7275533
.coveragerc
[report]
omit = *tests*, setup.py
exclude_lines =
    pragma: no cover
    def __repr__
    def __str__
    def _repr_html_
    def _repr_pretty_
    if self.debug:
    if settings.DEBUG
    raise AssertionError
    raise NotImplementedError
    if __name__ == .__main__.:
    print
back to top