this is the problem with the code because I don’t know how to properly explain it
Here is the code in typed form as well
JavaScript
x
15
15
1
def convert6(tog = [0]):
2
3
tog[0] = not tog[0]
4
if tog[0]:
5
print('Server DIF Hard ON')
6
difHardS = 1
7
8
else:
9
print('Server DIF Hard OFF')
10
difHardS = 0
11
12
button3 = tk.Button(self, text="Hard", command=convert6, height=2, width=20)
13
button3.pack()
14
if difHardS = 1:
15
Advertisement
Answer
You are using difHardS
variable within the method (I assume) which is nowhere defined in the method. This is the problem that the editor describes.