Files
coverage-comment-action/tests/code.py
Joachim Jablon 5e2905c070 Add test data
2021-07-24 00:06:37 +02:00

11 lines
177 B
Python

from typing import Optional
def code(arg: Optional[bool]) -> str:
if arg is None:
return "a"
elif arg is True:
return "b"
else:
return "c"