adrin commited on
Commit
e4a35e6
·
1 Parent(s): 3b41829

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -9,9 +9,9 @@ def convert(file):
9
  obj = joblib.load(in_file)
10
 
11
  if "." in in_file.name:
12
- out_file = in_file.split(".")[:-1]
13
  else:
14
- out_file = in_file
15
 
16
  out_file += ".skops"
17
  _, fname = tempfile.mkstemp(suffix=out_file)
 
9
  obj = joblib.load(in_file)
10
 
11
  if "." in in_file.name:
12
+ out_file = in_file.name.split(".")[:-1]
13
  else:
14
+ out_file = in_file.name
15
 
16
  out_file += ".skops"
17
  _, fname = tempfile.mkstemp(suffix=out_file)