Skip to content

Commit d6766c2

Browse files
committed
Release: Update to v0.2.0, close #1 and add new method
1 parent 6be0033 commit d6766c2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sqlazo/sqlazo.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,12 @@ def insert_data(self, data:list, cols:list, table_name:str) -> bool:
9191
"""Insert data in a specific table
9292
9393
Args:
94-
`data:list`: Data to insert into the table
95-
`cols:list`: Columns in which the values will be inserted
96-
`table_name:str`: Table name in which the values will be inserted
94+
`data:list`: Data to insert into the table
95+
`cols:list`: Columns in which the values will be inserted
96+
`table_name:str`: Table name in which the values will be inserted
9797
9898
Returns:
99-
`bool`: `True` success, `False` error
99+
`bool`: `True` success, `False` error
100100
"""
101101
if not self.table_exists(table_name): log.log(f'Table {table_name} does not exist'); return False
102102

0 commit comments

Comments
 (0)