From b464fcf54bc46a7ec05e294cb7ecceff0a331656 Mon Sep 17 00:00:00 2001 From: Carl Osterwisch Date: Fri, 25 Sep 2015 11:38:01 -0400 Subject: [PATCH] Removed redundant import of os module --- bash_kernel/install.py | 1 - 1 file changed, 1 deletion(-) diff --git a/bash_kernel/install.py b/bash_kernel/install.py index 15610bb..68d2fa1 100644 --- a/bash_kernel/install.py +++ b/bash_kernel/install.py @@ -23,7 +23,6 @@ def install_my_kernel_spec(user=True): install_kernel_spec(td, 'bash', user=user, replace=True) def _is_root(): - import os try: return os.geteuid() == 0 except AttributeError: