📄 __init__.py
"""Package testing sidebar_filter.enabled false config."""
__version__ = "0.1.0"
__all__ = ["func_a", "func_b", "func_c", "func_d", "func_e"]
def func_a() -> int:
"""
Return the value A.
Returns
-------
int
The integer value A.
"""
return 1
def func_b() -> int:
"""
Return the value B.
Returns
-------
int
The integer value B.
"""
return 2
def func_c() -> int:
"""
Return the value C.
Returns
-------
int
The integer value C.
"""
return 3
def func_d() -> int:
"""
Return the value D.
Returns
-------
int
The integer value D.
"""
return 4
def func_e() -> int:
"""
Return the value E.
Returns
-------
int
The integer value E.
"""
return 5