12 lines
143 B
Python
12 lines
143 B
Python
from tests.test_utils import *
|
|
|
|
@Commentor(fmt=[
|
|
(type(None), lambda o: None),
|
|
|
|
])
|
|
def function():
|
|
a, b = 3, 4
|
|
|
|
|
|
print(function())
|