Open snoopyjc opened 2 years ago
Variable references in interpolated strings with ${var} generate bad code. For example:
$tmdate = "${year}_${month}_${day}";
produces:
tmdate=f"{[year]}_{[month]}_{[day]}"
instead of:
tmdate=f"{year}_{month}_{day}"
Fixed in https://github.com/snoopyjc/pythonizer
Variable references in interpolated strings with ${var} generate bad code. For example:
produces:
instead of: