eumiro opened a new pull request, #33050: URL: https://github.com/apache/airflow/pull/33050
Migration from Python2 to Python3 changes some numeric behavior. In Python3: - `round()`, `math.ceil()` and `math.floor()` return `int` instead of `float` - true division `int / int` returns `float` and therefore it is not necessary to convert one of the parts to `float` or to multiply the expression by `1.0` The code has been simplified. No functionality has been changed. -- 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]
