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
how to reproduce: add code section
```python import pandas as pd df = pd.read_pickle('cars.pickle') brands = df[['brand_name', "brand_code"]] ```
result:
The text was updated successfully, but these errors were encountered:
Confirmed. No so nice workaround: Without the lang tag it works:
``` import pandas as pd df = pd.read_pickle('cars.pickle') brands = df[['brand_name', "brand_code"]] ```
Sorry, something went wrong.
Digging into this .. it's not the wikilink .. its something else. Better workaround, use double quotes:
```python= import pandas as pd df = pd.read_pickle('cars.pickle') brands = df[["brand_name", "brand_code"]] ```
test: added test to reprodue issue #190
cc80a5c
666cfd0
Released in v2.9.1.
No branches or pull requests
how to reproduce:
add code section
result:
The text was updated successfully, but these errors were encountered: