Hi,
This is the existing code:
for c in chartNames:
chartUrl = baseChartUrl+c
hd = extractChart(chartUrl)
writeChart(hd,c)
for key in hd:
if key in chart:
chart[key].append(c)
else:
chart[key] = [c]
when i wanted to insert a line before
chartUrl = baseChartUrl+c
by putting the cursor to the end of the
for c in chartNames:
and pressing an enter I get compile error.
what's happening here?