Files
Alexander KukushkinandGitHub 19f75b407e Compatibility with prettytable>=3.12.0 (#3217)
They started showing deprecation warning when importing ALL and FRAME constants.
2024-11-19 09:09:09 +01:00

18 lines
564 B
Python

from enum import IntEnum
from typing import Any, Dict, List
class HRuleStyle(IntEnum):
FRAME = 0
ALL = 1
FRAME = HRuleStyle.FRAME
ALL = HRuleStyle.ALL
class PrettyTable:
def __init__(self, *args: str, **kwargs: Any) -> None: ...
def _stringify_hrule(self, options: Dict[str, Any], where: str = '') -> str: ...
@property
def align(self) -> Dict[str, str]: ...
@align.setter
def align(self, val: str) -> None: ...
def add_row(self, row: List[Any]) -> None: ...
def __str__(self) -> str: ...
def __repr__(self) -> str: ...