Closed
Description
Environment data
- VS Code version: 1.30.2
- Extension version (available under the Extensions sidebar): 2019.1.0
- OS and version: Arch
- Python version (& distribution if applicable, e.g. Anaconda): 3.7
- Type of virtual environment used (N/A | venv | virtualenv | conda | ...): conda
Expected behaviour
Brackets should not be added to imported functions.
Actual behaviour
Brackets are added to imported functions.
Steps to reproduce:
- Create a python file
- Type
from time import tim
- Press tab or enter to autocomplete the function time
- See how brackets are added at the end of the time-function
from time import time()