Files
coverage-comment-action/tests/code.py
Joachim Jablon 38b2cf6c65 TMP
2021-07-24 00:12:23 +02:00

10 lines
163 B
Python

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