2catycm commited on
Commit
61a6b87
·
1 Parent(s): 76afe6d

feat: 修复路径错误的bug

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -11,7 +11,7 @@ this_file = Path(__file__).resolve()
11
  this_directory = this_file.parent
12
  # 数据集文件夹路径
13
  data_cangzhou_folder = this_directory / "data/Cangzhou"
14
- data_static_folder = data_cangzhou_folder / "static"
15
 
16
 
17
 
 
11
  this_directory = this_file.parent
12
  # 数据集文件夹路径
13
  data_cangzhou_folder = this_directory / "data/Cangzhou"
14
+ data_static_folder = data_cangzhou_folder / "Static" # windows linux差异,不要写错了
15
 
16
 
17