Andrey Maslov

Results 1 comments of Andrey Maslov

As alternative you may use patch context manager from unittest to change stdout to devnull: ```python with open(os.devnull, "w") as f: with patch("versatileimagefield.image_warmer.stdout", f): Warmer(...).warm() ``` But it would be...