EZ4Fanta commited on
Commit
f2f3ac8
·
1 Parent(s): 7136267
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -134,7 +134,7 @@ def handle_file_upload(file):
134
 
135
  def handle_pdb_id_input(pdb_id):
136
  try:
137
- # pdb_id = pdb_id.strip().upper()
138
  pdbl = PDBList()
139
  # 使用 TemporaryDirectory 创建临时文件夹
140
  with TemporaryDirectory() as temp_dir:
 
134
 
135
  def handle_pdb_id_input(pdb_id):
136
  try:
137
+ pdb_id = pdb_id.strip().lower()
138
  pdbl = PDBList()
139
  # 使用 TemporaryDirectory 创建临时文件夹
140
  with TemporaryDirectory() as temp_dir: