Add missing return keywords

This commit is contained in:
Tony Garnock-Jones 2022-01-12 11:05:10 +01:00
parent 30d1c067e7
commit 184363a9a9
1 changed files with 2 additions and 2 deletions

View File

@ -22,10 +22,10 @@ def __setup():
return turn.active.log
def run(facet, action):
Turn.run(facet, action)
return Turn.run(facet, action)
def external(facet, action, loop=None):
Turn.external(facet, action, loop=loop)
return Turn.external(facet, action, loop=loop)
def active_facet():
return turn.active._facet