This commit is contained in:
2026-01-21 20:35:19 -08:00
parent 06af9b30ac
commit d94e321148
13 changed files with 19 additions and 180 deletions
-12
View File
@@ -1,12 +0,0 @@
import traceback
try:
from Store import Store
s = Store(config={}, suppress_debug=True)
print('INSTANCE TYPE:', type(s))
print('HAS is_available:', hasattr(s, 'is_available'))
if hasattr(s, 'is_available'):
print('is_available callable:', callable(getattr(s, 'is_available')))
print('DIR:', sorted([n for n in dir(s) if not n.startswith('__')]))
except Exception:
traceback.print_exc()