Cannot find reference 'lower' in 'function'
actual_report_state.tu_description_lower = cfg.tu_name.lower()
Expected type 'int', got '() -> int' instead
sou_status = lds_utils.get_admin_tu_status(admin_reply, tu_id)
Expected type 'str', got '() -> str' instead
actual_report_state.report_item = await t_utils.poll_for_exported_file(
ws_client=ws_client,
parser=parser,
list_limit=ReportConst.EXPORTED_DATA_LIST_LIMIT,
expected_data_type=ExportedDataType.LEAKS_REPORT,
name_substring=ReportConst.LEAKS_REPORT_NAME_PART,
tu_name_substring=cfg.tu_name,
period_start=actual_report_state.period_start,
period_end=actual_report_state.period_end,
total_wait_seconds=ReportConst.LIST_POLL_TOTAL_WAIT_SECONDS,
poll_interval_seconds=ReportConst.LIST_POLL_INTERVAL_SECONDS,
)
Expected type 'str', got '() -> str' instead
actual_report_state.report_file_name = report_utils.build_export_report_file_name(
cfg.tu_name,
actual_report_state.period_start,
actual_report_state.period_end,
)