You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hey I just posted an issue #124 (comment) on this false errors topic.
In your script did you try do the type check using Mypy? Does it pass? In mine it did, there's no problem.
I'm getting errors that as best I can tell aren't real errors.
The code.
import time
from tkinter import *
WorkTime = int(0)
BreakTime = int(0)
RunCycles = int(0)
IsWork = bool(True)
def StartButton():
while RunCycles > 0:
if IsWork == True:
time.sleep(WorkTime)
RunCycles -= 1
else:
time.sleep(BreakTime)
window = Tk()
entry = Entry(window, font = ("",20,""))
entry.pack(side = LEFT)
window.mainloop()
I'm using nvim with mason.

The text was updated successfully, but these errors were encountered: