From 7f62580265d23dcb28fe1b19435c365fcd270105 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Tue, 15 Oct 2024 23:23:35 +0200 Subject: [PATCH] Add missing attribute annotations --- src/prettytable/prettytable.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/prettytable/prettytable.py b/src/prettytable/prettytable.py index 4fb9d7c..9799a37 100644 --- a/src/prettytable/prettytable.py +++ b/src/prettytable/prettytable.py @@ -124,6 +124,9 @@ class PrettyTable: _preserve_internal_border: bool _hrules: HRuleStyle _vrules: VRuleStyle + _int_format: dict[str, str] + _float_format: dict[str, str] + _custom_format: dict[str, Callable[[str, Any], str]] _padding_width: int _left_padding_width: int | None _right_padding_width: int | None