Optional

Optional typing

from typing import Optional

def foo(output: Optional[bool]=False):
	pass
foo()