hussein-awala commented on PR #33934: URL: https://github.com/apache/airflow/pull/33934#issuecomment-1699966689
More readable and fater: ```bash $ python -m timeit '[1, 2, 3] + [4] + [5] + [6] + [7]' 2000000 loops, best of 5: 179 nsec per loop $ python -m timeit '[*[1, 2, 3], 4, 5, 6, 7]' 5000000 loops, best of 5: 79 nsec per loop ``` -- 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]
