Skip to content
Snippets Groups Projects
Commit ca014841 authored by Julien (jvoisin) Voisin's avatar Julien (jvoisin) Voisin
Browse files

Silence a mypy's stupid warning

parent f9bc022c
No related branches found
No related tags found
No related merge requests found
......@@ -6,9 +6,9 @@ import datetime
import zipfile
from typing import Dict, Set, Pattern
try: # protect against DoS
from defusedxml import ElementTree as ET
from defusedxml import ElementTree as ET # type: ignore
except ImportError:
import xml.etree.ElementTree as ET
import xml.etree.ElementTree as ET # type: ignore
from . import abstract, parser_factory
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment