File: __init__.pyi

package info (click to toggle)
sphinx-autoapi 3.3.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 900 kB
  • sloc: python: 5,146; makefile: 7
file content (19 lines) | stat: -rw-r--r-- 342 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- coding: utf-8 -*-
"""Example __init__ in submodule foo

Documentation generated for this file
should be titled submodule_foo instead of __init__

This is a description
"""

class Foo(object):
    """
    This is a description
    """

    def bar(self, a: int) -> None:
        """
        This is a description
        """
        ...