Skip to content

Commit 6a1973c

Browse files
committed
Remove unrequired cast
1 parent 12e5b72 commit 6a1973c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/db_manager/db_plugins/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def _execute(self, cursor, sql):
8080
if cursor is None:
8181
cursor = self._get_cursor()
8282
try:
83-
cursor.execute(str(sql))
83+
cursor.execute(sql)
8484

8585
except self.connection_error_types() as e:
8686
raise ConnectionError(e)

0 commit comments

Comments
 (0)