Skip to content

Commit 5f6c824

Browse files
committed
fixed failed imports
1 parent e6d4630 commit 5f6c824

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

html5lib/_tokenizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from six import unichr as chr
44

5-
from collections.abc import deque
5+
from collections import deque
66

77
from .constants import spaceCharacters
88
from .constants import entities

html5lib/html5parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from six import with_metaclass, viewkeys
33

44
import types
5-
from collections.abc import OrderedDict
5+
from collections import OrderedDict
66

77
from . import _inputstream
88
from . import _tokenizer

0 commit comments

Comments
 (0)