MagicStack / MagicPython

Cutting edge Python syntax highlighter for Sublime Text, Atom and Visual Studio Code. Used by GitHub to highlight your Python code!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Intellisense does not recognize new Pandas dataframe variable as such when it is assigned with Pandas concat function

Orionsg opened this issue · comments

  • Editor name and version: VS Code 1.47.3 (system setup)
  • Platform: Windows 10
  • Color scheme: Dark+ (default dark)
  • MagicPython version: 1.1.0
  • 5-10 lines of surrounding code:
import pandas as pd 

df_1 = pd.DataFrame()
df_2 = pd.DataFrame()
df_3 = pd.concat([df_1,  df_2])

df_3.rein

In the last line there are no suggestions for functions. Pressing ctrl+space just gives "No suggestions."

MagicPython only does syntax highlighting.