_utils: Remove unnecessary trailing semicolon

This commit is contained in:
Allan Lewis 2016-04-27 11:33:49 +01:00
parent 75bfea0833
commit 3b73be8736
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ except ImportError:
codep = (ch & 0x3f ) | (codep << 6) if (state != _UTF8_ACCEPT) else (0xff >> tp) & ch
state = _UTF8D[256 + state + tp]
return state, codep;
return state, codep
def _validate_utf8(utfbytes):
state = _UTF8_ACCEPT