16 lines
332 B
Python
16 lines
332 B
Python
"""A test that verifies documenting functions in an input file under a local_repository."""
|
|
|
|
def min(integers):
|
|
"""Returns the minimum of given elements.
|
|
|
|
Args:
|
|
integers: A list of integers. Must not be empty.
|
|
|
|
Returns:
|
|
The minimum integer in the given list.
|
|
"""
|
|
_ignore = [integers]
|
|
return 42
|
|
|
|
|