From 1b3237ba383ba644628defcfde443e9a4e5af69c Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Sat, 7 Nov 2020 11:00:30 +0100 Subject: Add basic mypy support Silence some errors, run mypy in CI Adding annotations to functions/classes will make mypy check them. --- giscanner/annotationparser.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'giscanner/annotationparser.py') diff --git a/giscanner/annotationparser.py b/giscanner/annotationparser.py index f8257206..267542f9 100644 --- a/giscanner/annotationparser.py +++ b/giscanner/annotationparser.py @@ -110,6 +110,7 @@ import os import re import operator +from typing import Tuple from operator import ne, gt, lt from collections import namedtuple, Counter, OrderedDict @@ -575,7 +576,7 @@ class GtkDocAnnotatable(object): #: A :class:`tuple` of annotation name constants that are valid for this object. Annotation #: names not in this :class:`tuple` will be reported as *unknown* by :func:`validate`. The #: :attr:`valid_annotations` class attribute should be overridden by subclasses. - valid_annotations = () + valid_annotations = () # type: Tuple[str,...] def __init__(self, position=None): #: A :class:`giscanner.message.Position` instance specifying the location of the -- cgit v1.2.1