Steve Venzerul
Steve Venzerul
@technillogue Here's my settings section from a `.sublime-project` file ```json "settings": { "LSP": { "pyls": { "command": ["/Users/myuser/.virtualenvs/theenv/bin/pyls"], "enabled": true, "languageId": "python", "scopes": ["source.python"], "env": { "PYTHONPATH": "/Users/myuser/.virtualenvs/theenv/lib/python3.7/site-packages", "PATH": "$PATH:/Users/myuser/.virtualenvs/theenv/bin"...
I'm a sublime user, but I had the same issue as OP, .flake8 config file not being picked up. I was able to get it working with this config setup:...
I had the same problem recently and thanks to @sknutsonsf found a workaround that doesn't require editing the migration after applying it and doesn't mess with tests either. On the...
@hxss I had a similar issue here: #77 You can try the patch or wait to see if WH folks will accept it.
@chriddyp I saw https://github.com/plotly/dash/issues/141 where you guys removed CSRF protection. I understand the reasoning for removing your own implementation, however, some folks won't be able to remove CSRF protection from...
I'd also like to point out the logic mentioned here: https://security.stackexchange.com/questions/23371/csrf-protection-with-custom-headers-and-without-validating-token/58308#58308 is not future proof. If the underlying conditions for CSRF headers change in the future, some backends will find...