From 5c36947207eb4572f0155c65c8f578e00c107848 Mon Sep 17 00:00:00 2001 From: Jayasimha Raghavan Date: Thu, 14 Sep 2023 09:51:01 -0700 Subject: [PATCH] Lint error Fix --- unskript-ctl/creds_ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unskript-ctl/creds_ui.py b/unskript-ctl/creds_ui.py index 353c5a8db..a0ebcc622 100644 --- a/unskript-ctl/creds_ui.py +++ b/unskript-ctl/creds_ui.py @@ -53,7 +53,7 @@ # This variable is used to hold the Credential directory # Where all the creds are saved -if os.environ.get('CREDS_DIR') != None: +if os.environ.get('CREDS_DIR') is not None: CREDS_DIR = os.environ.get('CREDS_DIR') else: CREDS_DIR = os.environ.get('HOME') + "/.local/share/jupyter/metadata/credential-save/"