We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a75e26 commit 2a61bb6Copy full SHA for 2a61bb6
html5lib/html5parser.py
@@ -453,6 +453,7 @@ def getMetaclass(use_metaclass, metaclass_func):
453
else:
454
return type
455
456
+ # pylint:disable=unused-argument
457
class Phase(with_metaclass(getMetaclass(debug, log))):
458
"""Base class for helper object that implements each phase of processing
459
"""
@@ -2684,6 +2685,7 @@ def startTagOther(self, token):
2684
2685
def processEndTag(self, token):
2686
self.parser.parseError("expected-eof-but-got-end-tag",
2687
{"name": token["name"]})
2688
+ # pylint:enable=unused-argument
2689
2690
return {
2691
"initial": InitialPhase,
0 commit comments