Files
coverage-comment-action/tests/code.py

11 lines
177 B
Python
Raw Normal View History

2021-07-24 00:06:05 +02:00
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"