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 f20e4c4 commit 3b1f584Copy full SHA for 3b1f584
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
"""
@@ -2683,6 +2684,7 @@ def startTagOther(self, token):
2683
2684
def processEndTag(self, token):
2685
self.parser.parseError("expected-eof-but-got-end-tag",
2686
{"name": token["name"]})
2687
+ # pylint:enable=unused-argument
2688
2689
return {
2690
"initial": InitialPhase,
0 commit comments