mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-10 05:51:52 +08:00
When executing `img.paste(cropped, box=(10.5, 10.5))`: TypeError: 'float' object cannot be interpreted as an integer So the `box` parameter's type should be not `tuple[float, float]` but `tuple[int, int]`. (same as `_Box`)