mirror of
https://github.com/573dev/gfdm-server.git
synced 2026-03-21 17:54:19 -05:00
22 lines
321 B
Python
22 lines
321 B
Python
import logging
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def function_test(x: int) -> int:
|
|
"""
|
|
Returns the input value multiplied by 2
|
|
|
|
Args:
|
|
x (int): Value to multiply
|
|
|
|
Returns:
|
|
int: input value multiplied by 2
|
|
|
|
Example:
|
|
>>> function_test(2)
|
|
4
|
|
"""
|
|
return x * 2
|