We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
149 response = HttpResponse(mimetype='application/pdf') 150 response['Content-Disposition'] = 'attachment; filename=%s.pdf' % id 151 response.write(pdf) 152 153 return response
Renaming response on line 153 leads to:
149 foobear = HttpResponse(mimetype='application/pdf') 150 response['Content-Disposition'] = 'attachment; filename=%s.pdf' % id 151 foobear.write(pdf) 152 153 return foobear
The text was updated successfully, but these errors were encountered:
7c45d84
After rewriting the whole goto function (which is now not a hack anymore), this works.
One issue still remains: You cannot rename response on line #149. I'm working on it.
response
Sorry, something went wrong.
can now refactor statements ahead of '=', fixes #20
56a97c9
optimize call_def stuff with multiple flows, may help #20
1252622
No branches or pull requests
Renaming response on line 153 leads to:
The text was updated successfully, but these errors were encountered: