From 6b44f232f1396ffa4905b54d4a9a0425cf28d605 Mon Sep 17 00:00:00 2001 From: kiinami Date: Thu, 17 Aug 2023 17:52:02 +0200 Subject: [PATCH] refactor: shortening lines --- svglib/svglib.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/svglib/svglib.py b/svglib/svglib.py index e77df4d..a771e01 100755 --- a/svglib/svglib.py +++ b/svglib/svglib.py @@ -653,7 +653,10 @@ def get_shape_from_node(node): elif isinstance(shape, Path): return ClippingPath(copy_from=shape) elif shape: - logger.error("Unsupported shape type %s for clipping", shape.__class__.__name__) + logger.error( + "Unsupported shape type %s for clipping", + shape.__class__.__name__ + ) def print_unused_attributes(self, node): if logger.level > logging.DEBUG: