79163100

Date: 2024-11-06 14:49:23
Score: 0.5
Natty:
Report link

Try a formatted string for your last line where you are generating result go from:

result = cursor.execute(eightspdSQL + "AND speed=?", [speed]) + "ORDER BY brand ASC")

TO

result = cursor.execute(f"{eightspdSQL} AND speed={speed} ORDER BY brand ASC")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Matthew S Giancola