Skip to content

Commit

Permalink
Remove extraneous semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanrdelgado committed Feb 2, 2017
1 parent 00f55d5 commit f85459c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions TodoReview.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def resolve(self, directory):

class Thread(threading.Thread):
def __init__(self, engine, callback):
self.i = 0;
self.i = 0
self.engine = engine
self.callback = callback
self.lock = threading.RLock()
Expand All @@ -126,9 +126,9 @@ def __init__(self, engine, callback):
def run(self):
self.start = timeit.default_timer()
if sys.version_info < (3,0,0):
sublime.set_timeout(self.thread, 1);
sublime.set_timeout(self.thread, 1)
else:
self.thread();
self.thread()

def thread(self):
results = list(self.engine.process())
Expand Down

0 comments on commit f85459c

Please sign in to comment.