_utils: Remove unnecessary trailing semicolon
This commit is contained in:
@@ -72,7 +72,7 @@ except ImportError:
|
|||||||
codep = (ch & 0x3f ) | (codep << 6) if (state != _UTF8_ACCEPT) else (0xff >> tp) & ch
|
codep = (ch & 0x3f ) | (codep << 6) if (state != _UTF8_ACCEPT) else (0xff >> tp) & ch
|
||||||
state = _UTF8D[256 + state + tp]
|
state = _UTF8D[256 + state + tp]
|
||||||
|
|
||||||
return state, codep;
|
return state, codep
|
||||||
|
|
||||||
def _validate_utf8(utfbytes):
|
def _validate_utf8(utfbytes):
|
||||||
state = _UTF8_ACCEPT
|
state = _UTF8_ACCEPT
|
||||||
|
Reference in New Issue
Block a user