Skip to content

Instantly share code, notes, and snippets.

@mypy-play
Created April 26, 2024 09:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mypy-play/1fd4f3bbc11e614ad7307f56a061cb25 to your computer and use it in GitHub Desktop.
Save mypy-play/1fd4f3bbc11e614ad7307f56a061cb25 to your computer and use it in GitHub Desktop.
Shared via mypy Playground
def fun(a: int, b: str) -> None:
pass
call_args = {"a": 1, "b": "bbb"}
fun(**call_args)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment