From 10728e842067890da29ca80d3a2a4addcfc2d416 Mon Sep 17 00:00:00 2001 From: kientzle Date: Tue, 18 Mar 2008 18:49:15 +0000 Subject: Style: Remove some unnecessary semicolons. git-svn-id: http://freebase-python.googlecode.com/svn/trunk@37 5914aa95-5b3a-0410-a3b5-7b719e7fe9b2 --- metaweb-py/metaweb.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/metaweb-py/metaweb.py b/metaweb-py/metaweb.py index 65624e7..d651332 100644 --- a/metaweb-py/metaweb.py +++ b/metaweb-py/metaweb.py @@ -91,7 +91,7 @@ def read(q, credentials=None): raise MQLError('%s: %s' % (error['code'], error['message'])) # If there was no error, then just return the result from the envelope - return inner['result']; + return inner['result'] # Submit the MQL query q and return the result as a Python object # This function behaves like read() above, but uses cursors so that @@ -135,7 +135,7 @@ def readall(q, credentials=None): raise MQLError('%s: %s' % (error['code'], error['message'])) # Append this batch of results to the main array of results. - results.extend(inner['result']); + results.extend(inner['result']) # Finally, get the new value of the cursor for the next iteration cursor = inner['cursor'] -- cgit v1.3.1