diff --git a/src/app/sql_injection_fsm.py b/src/app/sql_injection_fsm.py index 9c64796..def64aa 100644 --- a/src/app/sql_injection_fsm.py +++ b/src/app/sql_injection_fsm.py @@ -2,7 +2,15 @@ from fsm_base import FSMBase class SQLInjectionFSM(FSMBase): - states = ['start', 'stripped_code', 'sql', 'commented_code', 'sql_with_substitutions', 'sql_output', 'end'] + states = [ + 'start', + 'stripped_code', + 'sql', + 'commented_code', + 'sql_with_substitutions', + 'sql_output', + 'end', + ] transitions = [ {'trigger': 'anchor_webide', 'source': 'start', 'dest': 'stripped_code'}, {'trigger': 'anchor_login', 'source': 'stripped_code', 'dest': 'sql'},