Finaly fixed my stupid python lsp

So now i can get Suggestions about my imports in python
This commit is contained in:
Bart Koolen 2026-02-12 11:25:56 +01:00
parent 49598ab1e0
commit 8d89264129
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,6 @@
virtualenv
requests
pandas
types-requests
# Optional: Add other helpful dev tools outside of the python-pkgs set if needed
# (e.g., git, pre-commit, bash-completion)
]))

View file

@ -1,7 +1,8 @@
import requests as http
from time import sleep, time
import pandas
print(pandas.show_versions)
for i in range(1,20):
sleep(1)
startTime = time()