In /usr/bin/lspgpot line 18:
gpg --dry-run --with-fingerprint --with-colons $* | awk '
                                               ^-- SC2048: Use "$@" (with quotes) to prevent whitespace problems.
                                               ^-- SC2086: Double quote to prevent globbing and word splitting.

Did you mean: 
gpg --dry-run --with-fingerprint --with-colons "$*" | awk '

For more information:
  https://www.shellcheck.net/wiki/SC2048 -- Use "$@" (with quotes) to prevent...
  https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...