Skip to content

Commit

Permalink
remove assignment expression
Browse files Browse the repository at this point in the history
  • Loading branch information
boeddeker committed Dec 5, 2023
1 parent 02a940c commit fe8941d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions meeteval/der/md_eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,10 @@ def md_eval_22(
logging.info(f'Wrote {md_eval_22}')

def get_details(r, h, key, tmpdir):
r.dump(r_file := tmpdir / f'{key}.ref.rttm')
h.dump(h_file := tmpdir / f'{key}.hyp.rttm')
r_file = tmpdir / f'{key}.ref.rttm'
h_file = tmpdir / f'{key}.hyp.rttm'
r.dump(r_file)
h.dump(h_file)

cmd = [
'perl', f'{md_eval_22}',
Expand Down

0 comments on commit fe8941d

Please sign in to comment.