Mypy missing import

Hello, I tried to setup mypy and have been seeing the missing import error in my neovim with nvim-lint.

This is what my shell.nix looks like:

{ pkgs ? import <nixpkgs> {} }:

pkgs.mkShell {
  name = "hb-downloader";
  buildInputs = [
    (pkgs.python3.withPackages ( pyPkgs: with pyPkgs; [
        requests
        mypy
    ]))
  ];
  nativeBuildInputs = [
    pkgs.aria2
  ];
}

Anybody know of a fix?
I’m running nixos unstable with commit: 9df3e30ce24fd28c7b3e2de0d986769db5d6225d

could you provide a more detailed description of your error and maybe provide the relevant logs?