Anti-Distinctlyminty
Anti-Distinctlyminty
Hi Alexander, Thanks for the feedback. > To fix the workspace, you can change `path` to `..`. Would moving the workspace file out of the library, up one level, have...
Thanks @AlexanderSher. Unfortunately, changing `path` to `'..'` did not completely resolve the issue in my real life project. Even though there is no warning about unresolved imports, the language server...
Yes. `nymus3d` is the package. Folder structure is ``` nymus3d |----__init__.py |----houdini_io_globals.py |----...```
@AlexanderSher I put `"python.analysis.downloadChannel": "daily"` in my settings.json, but I'm not sure I'm getting daily builds. The current is 2019.6.24221 from 3 days ago and the next on the list...
Thanks @MikhailArkhipov , here it is... Microsoft Python Language Server version 0.3.30.0
I also tested this again with the simple myLib example files in the original report. The results are still the same with an `unresolved import 'myLib'`.
Just trying to resurrect. This is a screen grab showing how the 'title' renders 
In my local copy of flasgger I changed `utils.py` line 630 from ```python first_line = process_doc(full_doc[:line_feed]) ``` to ```python first_line = full_doc[:line_feed] ``` This made it display correctly in the...
No. I moved my project to use https://github.com/marshmallow-code/flask-smorest instead.
From the requests library docs it states [here](https://docs.python-requests.org/en/master/user/quickstart/#passing-parameters-in-urls) > Note that any dictionary key whose value is None will not be added to the URL’s query string. I am unaware...