nikhilcss97 commented on issue #56529:
URL: https://github.com/apache/airflow/issues/56529#issuecomment-3452675860

   Hey @kaxil, thanks for the response.
   
   We are converting start date and end date to string:
   
   ```
   with DAG(
           params={
               "retailer_list": Param(None, "Provide comma separated list of 
retailers, no spaces"),
               "efun_query_start_date": Param(
                   (datetime.date.today() - 
datetime.timedelta(days=2)).strftime("%Y-%m-%d"), "Provide date yyyy-mm-dd"
               ),
               "efun_query_end_date": 
Param(datetime.date.today().strftime("%Y-%m-%d"), "Provide date yyyy-mm-dd"),
           },
           **dag_kwargs,
       ) as dag:
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to