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
Just started experimenting with LSP for Python in Emacs. The following code will raise an AttributeError:
AttributeError
import numpy as np def func(foo, test): baz = np.unique(test[f's{foo}'].values) return baz
The error happens when the cursor is positioned between e in np.unique and (. Any idea how to fix this?
e
np.unique
(
Thanks for the project!
The text was updated successfully, but these errors were encountered:
Another example:
# module `helpers.py` mainfont = 'Anka/Coder Condensed' argos_fontset = f" | font='{mainfont}'"
Then, from helpers import argos_fontset, pyls crashes (in atom). Same error message in console.
from helpers import argos_fontset
Sorry, something went wrong.
*Warnings*
No branches or pull requests
Just started experimenting with LSP for Python in Emacs.
The following code will raise an
AttributeError
:The error happens when the cursor is positioned between
e
innp.unique
and(
.Any idea how to fix this?
Thanks for the project!
The text was updated successfully, but these errors were encountered: