lschlessinger commited on
Commit
ac4124a
·
1 Parent(s): 8b2171f

patch: fix deprecated arg

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -7,12 +7,10 @@ import match_parser as mp
7
 
8
  def usatt_rating_analyzer(file_obj):
9
  # Load data.
10
- file_path = Path(file_obj.name)
11
- df, is_tournament = mp.load_match_df(file_path)
12
 
13
  # Create outputs.
14
- print(file_path.stem)
15
- player_name = mp.get_player_name(file_path.stem)
16
  current_rating = mp.get_current_rating(df)
17
  peak_rating = mp.get_max_rating(df)
18
  n_competitions_played = mp.get_num_competitions_played(df, is_tournament)
@@ -66,7 +64,7 @@ with gr.Blocks() as demo:
66
  """)
67
  with gr.Row():
68
  with gr.Column():
69
- input_file = gr.File(label='USATT Results File', file_types=['file'], keepfilename=True)
70
  btn = gr.Button(analyze_btn_title)
71
 
72
  gr.Markdown("""<br />
 
7
 
8
  def usatt_rating_analyzer(file_obj):
9
  # Load data.
10
+ df, is_tournament = mp.load_match_df(Path(file_obj.name))
 
11
 
12
  # Create outputs.
13
+ player_name = mp.get_player_name(Path(file_obj.orig_name).stem)
 
14
  current_rating = mp.get_current_rating(df)
15
  peak_rating = mp.get_max_rating(df)
16
  n_competitions_played = mp.get_num_competitions_played(df, is_tournament)
 
64
  """)
65
  with gr.Row():
66
  with gr.Column():
67
+ input_file = gr.File(label='USATT Results File', file_types=['file'])
68
  btn = gr.Button(analyze_btn_title)
69
 
70
  gr.Markdown("""<br />