Xqt has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/649675 )
Change subject: [bugfix] Fix typing import ......................................................................
[bugfix] Fix typing import
Change-Id: I3074706b0315f24aa9955912a928c48f02ca5f90 --- M pywikibot/date.py 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: jenkins-bot: Verified Xqt: Looks good to me, approved
diff --git a/pywikibot/date.py b/pywikibot/date.py index 3b199fa..0bd2864 100644 --- a/pywikibot/date.py +++ b/pywikibot/date.py @@ -25,7 +25,7 @@ )
if PYTHON_VERSION >= (3, 9): - List = tuple + Tuple = tuple else: from typing import Tuple
pywikibot-commits@lists.wikimedia.org