From e2efea44f243b47bcbaca5ea03e304e1e4ce2cb7 Mon Sep 17 00:00:00 2001 From: tlatorre Date: Mon, 11 May 2020 10:40:14 -0500 Subject: 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. --- utils/sddm/__init__.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'utils') 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 -- cgit