Skip to content
This repository has been archived by the owner on Nov 9, 2024. It is now read-only.

Commit

Permalink
Merge pull request #37 from takkii/develop
Browse files Browse the repository at this point in the history
Update.
  • Loading branch information
takkii authored Aug 28, 2023
2 parents e85ba77 + 2c2ad68 commit 40428fd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions rplugin/python3/deoplete/sources/phantom.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@ def get_complete_position(self, context):

def gather_candidates(self, context):
try:
# It doesn't support python4 yet.
py_major = sys.version_info[0]
py_minor = sys.version_info[1]

# 3.5 or higher python version is required.
if py_major == 3 and py_minor > 4:
# Settings, Config path is true/false change.
config_load: Optional[str] = '~/config/load.yml'
Expand Down

0 comments on commit 40428fd

Please sign in to comment.