fix: sax contenthandler import path

This commit is contained in:
mathieui 2021-03-20 20:55:26 +01:00
parent 14c09ce1cd
commit 71ee1b85aa

View file

@ -20,7 +20,8 @@ from pathlib import Path
from io import BytesIO
from xml import sax
from xml.sax import saxutils, ContentHandler
from xml.sax import saxutils
from xml.sax.handler import ContentHandler
from typing import List, Dict, Optional, Union, Tuple
from slixmpp.xmlstream import ET