Skip to content
Snippets Groups Projects
Commit 686e1f56 authored by Oscar Gustafsson's avatar Oscar Gustafsson :bicyclist:
Browse files

Skip Optional for arguments

parent bdccb4a7
No related branches found
No related tags found
1 merge request!123Skip Optional for arguments
Pipeline #88414 passed
...@@ -51,10 +51,10 @@ class AxesItem(QGraphicsItemGroup): ...@@ -51,10 +51,10 @@ class AxesItem(QGraphicsItemGroup):
self, self,
width: int, width: int,
height: int, height: int,
width_indent: Optional[float] = 0.2, width_indent: float = 0.2,
height_indent: Optional[float] = 0.2, height_indent: float = 0.2,
width_padding: Optional[float] = 0.6, width_padding: float = 0.6,
height_padding: Optional[float] = 0.5, height_padding: float = 0.5,
parent: Optional[QGraphicsItem] = None, parent: Optional[QGraphicsItem] = None,
): ):
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment