Adrian Bravo

Results 27 comments of Adrian Bravo

Surprisingly, 4 years after, this would still be very useful to have. Even for MySQL where RETURNING is not supported, encapsulating the subsequent SELECT inside Slick would save the developer...

A quick look at the API makes me think this is achieve with a call of the form `http://localhost:7990/bitbucket/rest/api/1.0/projects/{project-key}/permissions/{permission}/all`. E.g: ```bash > curl -u admin:admin http://localhost:7990/bitbucket/rest/api/1.0/projects/pub/permissions/PROJECT_READ/all {"permitted":true} ``` Based on...

I'm looking forward to this too. I'm dealing with some applications that use form-url-enconded as the content-type but some of the arguments are then a JSON string. The current parser...

Reading a bit on this code it does look like the correct fix here is to change the capitalization. As it stands now we're not saving the scope for any...

It may be possible to look at the class hierarchy of a `ClassDef` node recursively until you find the `View` class (or `object`) since it seems like every view type...

Hi @possleave, I don't see any reason why this wouldn't work on Windows. I haven't tried installing it there, but it should be as easy as installing any other python...

I forgot to mention that I've noticed that `pyre --search-path "$(pipenv --venv)/lib/python3.7/site-packages/"` does not find those problems, but this creates two other problems for us: 1. It requires a python...

Hi @grievejia, thank you for the support. How do you suggest I specify the `source_directory` or `search_paths` in the configuration so that everyone in the team and the CI machines...

Hi @grievejia, you are correct. The paths are all related to the virtual environment site-packages directory. Having a way to interpolate that in the config file will help finding the...

Hi @grievejia, was away for a while. I'll test it this week and let you know, but it should do what we need. Thanks!