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