Frappe Reports Filter

I am calling frappe.reports.run() from python to run a report and I want my report to be filtered on basis of a variable passed in run method.
project_list = frappe.get_all(‘pq_project’, fields = ‘project_name’)
for project in project_list:
tender_status_query_report = reports.run(‘tender_status_query_report’, ?? )

how can i add my variable project[‘project_name’] in ?? place.
This is a screenshot of my desk. I want to pass this variable to my filter and then get my query.