mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
7 lines
137 B
Python
7 lines
137 B
Python
def set_args(args):
|
|
'''
|
|
:type args: Dict[str, Any]
|
|
'''
|
|
args['bool_cli'] = False
|
|
args['args_star'] = ['asdf', 'qwer']
|