Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1d0512 commit 393cc34Copy full SHA for 393cc34
lib/matplotlib/layout_engine.pyi
@@ -3,14 +3,14 @@ from matplotlib.figure import Figure
3
from typing import Any
4
5
class LayoutEngine:
6
- def __init__(self, **kwargs) -> None: ...
+ def __init__(self, **kwargs: Any) -> None: ...
7
def set(self) -> None: ...
8
@property
9
def colorbar_gridspec(self) -> bool: ...
10
11
def adjust_compatible(self) -> bool: ...
12
def get(self) -> dict[str, Any]: ...
13
- def execute(self, fig) -> None: ...
+ def execute(self, fig: Figure) -> None: ...
14
15
class PlaceHolderLayoutEngine(LayoutEngine):
16
def __init__(
0 commit comments