Skip to content

Commit

Permalink
got rid of the print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
vmallela0 committed May 9, 2020
1 parent 9042d77 commit d94729a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
labelTest.pack(side="top")

def close_window():
print(variable.get())
# print(variable.get())
clrspace.append(variable.get())
time.sleep(1)
app.destroy()
Expand All @@ -47,7 +47,7 @@ def callback(*args):

app.mainloop()

print(clrspace) # 0 = hsv, 1 = lab, 2 = cmyk, 3 = rgb
# print(clrspace) # 0 = hsv, 1 = lab, 2 = cmyk, 3 = rgb
MODE = clrspace[0]

# threshold settings
Expand Down

0 comments on commit d94729a

Please sign in to comment.