fix BufferLine.notes definition
This commit is contained in:
parent
710b711c70
commit
2139c99562
1 changed files with 2 additions and 1 deletions
|
@ -11,7 +11,8 @@ class BufferLine(object):
|
||||||
tags: dict
|
tags: dict
|
||||||
from_self: bool
|
from_self: bool
|
||||||
method: str
|
method: str
|
||||||
notes: typing.Dict[str, str] = {}
|
notes: typing.Dict[str, str] = dataclasses.field(
|
||||||
|
default_factory=dict)
|
||||||
|
|
||||||
class BufferLineMatch(object):
|
class BufferLineMatch(object):
|
||||||
def __init__(self, line: BufferLine, match: str):
|
def __init__(self, line: BufferLine, match: str):
|
||||||
|
|
Loading…
Reference in a new issue