Cosmetics / PyLint / Shell Script: Use lazy % formatting in logging functions Posted on 10.11.202510.11.2025 by GhitaB NOT OK: log.info(f"Error blabla: {error}") OK: log.info("Error blabla: %s", error) Tags: docs, python, solutions, web development Category: Docs