Fix neovim not having the same classes as vim

This commit is contained in:
Ben Jackson 2020-07-11 14:08:29 +01:00
commit 036c9b9605

View file

@ -112,9 +112,8 @@ class Watch:
class View:
lines: typing.Dict[ int, Expandable ]
draw: typing.Callable
buf: vim.Buffer
def __init__( self, win: vim.Window, lines, draw ):
def __init__( self, win, lines, draw ):
self.lines = lines
self.draw = draw
self.buf = win.buffer