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

10 lines
163 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"
2021-07-24 00:12:23 +02:00
return "c"