Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Naartti/a8bd28903c3d683a77d76b049eadd66b to your computer and use it in GitHub Desktop.
Save Naartti/a8bd28903c3d683a77d76b049eadd66b to your computer and use it in GitHub Desktop.
Typed Python function with optional parameters
from typing import Optional
def optional_foo(bar: Optional[str]):
return bar or "No input"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment