Skip to content

Commit 5ed442d

Browse files
committed
idb - Fixed typo in IdbConnection.drop() method.
1 parent 8945118 commit 5ed442d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: cloudwrapper/idb.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ def table(self, name, tags=None):
4444

4545

4646
def drop(self, name, silent=True):
47-
Table(self.client, name).drop(silent)
47+
self.table(self.client, name).drop(silent)
4848
return True
4949

5050

5151

5252
class Table(object):
5353

54-
def __init__(self, client, name, tags):
54+
def __init__(self, client, name, tags=None):
5555
"""
5656
Create Table object with name, using client connection.
5757
"""

0 commit comments

Comments
 (0)