DivyaShah2025 commited on
Commit
c7c5a4e
Β·
verified Β·
1 Parent(s): b908572

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -40,6 +40,13 @@ class NSEAnalyzerApp:
40
  print("🟑 Creating interface...")
41
  self.interface = self.create_interface()
42
  print("🟒 Interface created successfully")
 
 
 
 
 
 
 
43
 
44
  except Exception as e:
45
  print(f"πŸ”΄ Error during initialization: {e}")
 
40
  print("🟑 Creating interface...")
41
  self.interface = self.create_interface()
42
  print("🟒 Interface created successfully")
43
+ # In your NSEAnalyzerApp.__init__() method, add:
44
+ import os
45
+ print(f"πŸ“ Current working directory: {os.getcwd()}")
46
+ print(f"πŸ“ Contents of current directory: {os.listdir('.')}")
47
+ print(f"πŸ“ /data directory exists: {os.path.exists('/data')}")
48
+ if os.path.exists('/data'):
49
+ print(f"πŸ“ Contents of /data: {os.listdir('/data')}")
50
 
51
  except Exception as e:
52
  print(f"πŸ”΄ Error during initialization: {e}")