diff options
author | tlatorre <tlatorre@uchicago.edu> | 2020-05-11 10:40:14 -0500 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2020-05-11 10:40:14 -0500 |
commit | e2efea44f243b47bcbaca5ea03e304e1e4ce2cb7 (patch) | |
tree | 157c223d483d958953430f723a70266bfab40bb3 | |
parent | 85f5df0c0074722fef812138df14c89996c0d063 (diff) | |
download | sddm-e2efea44f243b47bcbaca5ea03e304e1e4ce2cb7.tar.gz sddm-e2efea44f243b47bcbaca5ea03e304e1e4ce2cb7.tar.bz2 sddm-e2efea44f243b47bcbaca5ea03e304e1e4ce2cb7.zip |
don't import everything in __init__.py
This commit updates utils/sddm/__init__.py to not import everything by default.
The reason is that on the open science grid login machine they don't have the
module scipy.stats by default.
-rw-r--r-- | utils/sddm/__init__.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/utils/sddm/__init__.py b/utils/sddm/__init__.py index 2525383..902039d 100644 --- a/utils/sddm/__init__.py +++ b/utils/sddm/__init__.py @@ -133,7 +133,3 @@ def which(cmd, mode=os.F_OK | os.X_OK, path=None): if _access_check(name, mode): return name return None - -from . import plot -from . import plot_energy -from . import dc |