added a for loop
Some checks failed
Potlatch Loggers Organization/ComputerKeeper/pipeline/head There was a failure building this commit

This commit is contained in:
Joe Stanley 2022-11-10 17:54:49 -08:00
parent 9f2d8a572f
commit cc23a9df5b

12
main.py
View File

@ -130,11 +130,13 @@ def main():
window["Name"].update(row[3]) window["Name"].update(row[3])
elif event == "Check Out": elif event == "Check Out":
SN = window["Serial Number"].get() SN = window["Serial Number"].get()
G = window["Grade"].get() G = window["Grade"].get()
N = window["Name"].get() N = window["Name"].get()
Table = window["table"].get() Table = window["table"].get()
print(Table) print(Table)
for row in Table:
# Finish up by removing from the screen # Finish up by removing from the screen