fix BufferLine.notes definition

This commit is contained in:
jesopo 2019-11-27 12:59:36 +00:00
parent 710b711c70
commit 2139c99562

View file

@ -11,7 +11,8 @@ class BufferLine(object):
tags: dict
from_self: bool
method: str
notes: typing.Dict[str, str] = {}
notes: typing.Dict[str, str] = dataclasses.field(
default_factory=dict)
class BufferLineMatch(object):
def __init__(self, line: BufferLine, match: str):