Line 362 of tags.py is
comment = abstractproperty(fget=lambda self: Non, fset=lambda self, value: None)
Judging by the surrounding lines and python syntax, shouldn't that be
comment = abstractproperty(fget=lambda self: None, fset=lambda self, value: None)
?
Line 362 of tags.py is
Judging by the surrounding lines and python syntax, shouldn't that be
?