mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 13:00:05 +08:00
15 lines
420 B
Python
Vendored
15 lines
420 B
Python
Vendored
# ============================================================================
|
|
# FILE: base.py
|
|
# AUTHOR: Shougo Matsushita <Shougo.Matsu at gmail.com>
|
|
# License: MIT license
|
|
# ============================================================================
|
|
|
|
from pynvim import Nvim
|
|
|
|
from deoplete.base.source import Base as _Base
|
|
|
|
|
|
class Base(_Base):
|
|
def __init__(self, vim: Nvim) -> None:
|
|
super().__init__(vim)
|