get_tab
Get a tab by name. If the tab does not exist, create it.
def get_tab(
name: str,
create_if_missing: bool = True
) - > Tab
Get a tab by name. If the tab does not exist, create it.
Parameters
| Name | Type | Description |
|---|---|---|
| name | str | The name of the tab. |
| create_if_missing | bool = True | Whether to create the tab if it does not exist. |
Returns
| Type | Description |
|---|---|
Tab | The tab. |