Except Statement on the same line as RBRACE (REPY-0002)

Description

This error occurs when an except statement is on the same line as a closing RBRACE.

Incorrect:

try {
    pass
} except {     <---- REPY-0002
    pass
}

Correct:

try {
    pass
}              <----
except {
    pass
}