Bug 1344831 - Enable flake8 rule E703: "statement ends with a semicolon". r=dexter

Removed ending semicolons.
This commit is contained in:
djmdev
2017-03-09 22:37:32 +05:30
parent 2c6c152221
commit d657ec5e92
6 changed files with 9 additions and 9 deletions

View File

@@ -34,7 +34,7 @@ class StringTable:
"""Manages a string table and allows C style serialization to a file."""
def __init__(self):
self.current_index = 0;
self.current_index = 0
self.table = {}
def c_strlen(self, string):