Fix a linter issue

This commit is contained in:
Dave Halter
2020-07-25 15:59:33 +02:00
parent b176ed6eee
commit 2197e4c9e8

View File

@@ -230,6 +230,7 @@ class Token(NamedTuple):
string: str
start_pos: Tuple[int, int]
prefix: str
@property
def end_pos(self) -> Tuple[int, int]:
lines = split_lines(self.string)