8000
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 c64bfca commit c1c16ceCopy full SHA for c1c16ce
html5lib/html5parser.py
@@ -460,6 +460,7 @@ def getMetaclass(use_metaclass, metaclass_func):
460
else:
461
return type
462
463
+ # pylint:disable=unused-argument
464
class Phase(with_metaclass(getMetaclass(debug, log))):
465
"""Base class for helper object that implements each phase of processing
466
"""
@@ -2765,6 +2766,7 @@ def startTagOther(self, token):
2765
2766
def processEndTag(self, token):
2767
self.parser.parseError("expected-eof-but-got-end-tag",
2768
{"name": token["name"]})
2769
+ # pylint:enable=unused-argument
2770
2771
return {
2772
"initial": InitialPhase,
0 commit comments