Closed
Description
Testing #196327
Seems somewhat random... but firstLine
doesn't seem to work between cell 1 and 2... but it works between cell 2 and 3.
Screencast.from.10-24-2023.10.52.31.AM.webm
Cell 1:
# 1
import time
time.sleep(3)
for i in range(29):
print(i)
Cell 2:
# 2
import time
for i in range(20):
time.sleep(.5)
print(i)
Cell 3:
# 3
for i in range(20):
print(i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment