mirror of
https://github.com/b-ryan/powerline-shell.git
synced 2026-09-10 07:26:28 -04:00
5 lines
96 B
Python
5 lines
96 B
Python
def dict_side_effect_fn(dict_):
|
|
def func(*args):
|
|
return dict_[args]
|
|
return func
|