From c0950eca30f3bbb91c96d921bf8e7d7063dc5d6a Mon Sep 17 00:00:00 2001 From: RumovZ Date: Mon, 29 Mar 2021 12:04:14 +0200 Subject: [PATCH] Explain use of deprecated decorator --- qt/aqt/table.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qt/aqt/table.py b/qt/aqt/table.py index 9ac75e1d9..174dc5402 100644 --- a/qt/aqt/table.py +++ b/qt/aqt/table.py @@ -546,6 +546,8 @@ class ItemState(ABC): # Columns and sorting + # abstractproperty is deprecated but used due to mypy limitations + # (https://github.com/python/mypy/issues/1362) @abstractproperty def columns(self) -> List[Tuple[str, str]]: """Return all for the state available columns."""