summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2023-01-07 22:42:57 +0000
committerEmmanuele Bassi <ebassi@gnome.org>2023-01-08 00:38:14 +0000
commita0192ba32aa25c24a71d11d7da974c47b6e35e4d (patch)
treeb645e745aa396aba629afd2524f4dac25b5127a1
parentc2d6e0bc2478b63d0e07c004e38da6162a5ca988 (diff)
downloadgobject-introspection-a0192ba32aa25c24a71d11d7da974c47b6e35e4d.tar.gz
scanner: Ignore unused typing import
Ignore the typing import so that flake8 doesn't complain, and mypy keeps working.
-rw-r--r--giscanner/annotationparser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/giscanner/annotationparser.py b/giscanner/annotationparser.py
index 9a2677af..bce99804 100644
--- a/giscanner/annotationparser.py
+++ b/giscanner/annotationparser.py
@@ -110,9 +110,9 @@ import os
import re
import operator
-from typing import Tuple
-from operator import ne, gt, lt
from collections import namedtuple, Counter, OrderedDict
+from operator import ne, gt, lt
+from typing import Tuple # noqa
from .message import Position, warn, error