From ef9ac651f9af59bf496e0e41f482ec59cee19edc Mon Sep 17 00:00:00 2001 From: Dmytro Bogovych Date: Mon, 11 Sep 2023 12:18:08 +0300 Subject: [PATCH] - fix error on None value --- src/agent_gsm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agent_gsm.py b/src/agent_gsm.py index b246e13..fab89f8 100644 --- a/src/agent_gsm.py +++ b/src/agent_gsm.py @@ -92,7 +92,7 @@ def upload_results(): # Path to audio path_audio = t[1] - utils.log(f'Found {path_report.name} and {path_audio.name} files.') + utils.log(f'Found {t} report pair.') if path_report is not None and path_report.exists(): try: with open(path_report, 'rt') as f: