From f6c136c1a81926f29b7a192232f7b8fddfd87c58 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sun, 7 Mar 2021 16:11:03 -0600 Subject: [PATCH] zshrc: Remove PYTHONWARNINGS env var I originally set the `PYTHONWARNINGS` variable to ensure I see warnings from third-party libraries, etc. during development. Unfortunately, a *lot* of software (Ansible, Jupyter, dnf, etc.) generate a lot of warnings. These warnings are annoying, but can also break other software, like VSCode. Whenever I am developing something in Python, I need to remember to set `PYTHONWARNINGS` manually now... --- .zshrc | 1 - 1 file changed, 1 deletion(-) diff --git a/.zshrc b/.zshrc index 852a3b7..959f46f 100644 --- a/.zshrc +++ b/.zshrc @@ -8,7 +8,6 @@ setopt INTERACTIVE_COMMENTS export LESSCOLOR=1 export LESS='-R' -export PYTHONWARNINGS=default,ignore::ImportWarning export NOSE_REDNOSE=1 bindkey "^?" backward-delete-char