'Hi ive got a sqlite database and im trying to find a way to try and output a user into some entry boxes and im getting an error

This is the error im getting Incorrect number of bindings supplied. The current statement uses 1, and there are 0 supplied.

This is the code which isnt working

enw=enwinput.get()
conn=sqlite3.connect("login.db")
c=conn.cursor()
c.execute("SELECT enw, * FROM manylion WHERE enw=?", (enw))
sql = "SELECT * FROM inventory WHERE id=?"


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source