Skip to content

Commit

Permalink
refactor: shortening lines
Browse files Browse the repository at this point in the history
  • Loading branch information
kiinami authored and claudep committed Aug 18, 2023
1 parent 081bc35 commit 6b44f23
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion svglib/svglib.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 6b44f23

Please sign in to comment.