From 8d892641291c6be9dec93723c82e55890754649f Mon Sep 17 00:00:00 2001 From: Bart Date: Thu, 12 Feb 2026 11:25:56 +0100 Subject: [PATCH] Finaly fixed my stupid python lsp So now i can get Suggestions about my imports in python --- flake.nix | 1 - src/test.py | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index ab6e3c9..d0d3e32 100644 --- a/flake.nix +++ b/flake.nix @@ -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) ])) diff --git a/src/test.py b/src/test.py index 8aadb99..85e1d83 100644 --- a/src/test.py +++ b/src/test.py @@ -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()