diff --git a/lang/python/python.py b/lang/python/python.py index ae58f7810e..ead965deb6 100644 --- a/lang/python/python.py +++ b/lang/python/python.py @@ -346,3 +346,9 @@ def code_insert_type_annotation(type: str): def code_insert_return_type(type: str): actions.insert(f" -> {type}") + + def code_break(): + actions.insert("break") + + def code_next(): + actions.insert("continue")