bobfu commited on
Commit
9036163
·
verified ·
1 Parent(s): 14f132a

Fix a typo

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -18,7 +18,7 @@ downloaded_dir = snapshot_download(
18
  ) # downloaded_dir is something like "private_space_cache/bobfu/WordDocxFormatConvertor"
19
 
20
  # 2. Insert the private folder into sys.path so imports resolve correctly
21
- **sys.path.insert(0, str(downloaded_dir)) # Allow Python to import convertor from the same directory**
22
 
23
  # 3. Load the main app script from the private repo
24
  app_path = Path(downloaded_dir) / "app.py"
 
18
  ) # downloaded_dir is something like "private_space_cache/bobfu/WordDocxFormatConvertor"
19
 
20
  # 2. Insert the private folder into sys.path so imports resolve correctly
21
+ sys.path.insert(0, str(downloaded_dir)) # Allow Python to import convertor from the same directory
22
 
23
  # 3. Load the main app script from the private repo
24
  app_path = Path(downloaded_dir) / "app.py"