Skip to content

Commit

Permalink
fix(handler): replace run_single function
Browse files Browse the repository at this point in the history
  • Loading branch information
rcarriga committed Sep 26, 2021
1 parent 8436e20 commit 6635a25
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions rplugin/python3/ultest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ def handler(self):
def _run_nearest(self, args):
self.handler.run_nearest(*args)

@function("_ultest_run_single", allow_nested=True)
def _run_single(self, args):
self.handler.run_single(*args)

@function("_ultest_run_last", allow_nested=True)
def _run_last(self, args):
self.handler.run_last(*args)
Expand Down

0 comments on commit 6635a25

Please sign in to comment.