def handle(foo, **args, **moreargs): print(foo, args, moreargs) def handle(foo, **args: int, **moreargs: int): print(foo, args, moreargs)