mirror of
https://github.com/github/codeql.git
synced 2025-12-24 12:46:34 +01:00
17 lines
306 B
Python
17 lines
306 B
Python
|
|
def do_action_forgotten_raise(action):
|
|
if action == "go":
|
|
start()
|
|
elif action == "stop":
|
|
stop()
|
|
else:
|
|
ValueError(action)
|
|
|
|
def do_action(action):
|
|
if action == "go":
|
|
start()
|
|
elif action == "stop":
|
|
stop()
|
|
else:
|
|
raise ValueError(action)
|