ext/admin: fix async/non-async mismatch
This commit is contained in:
parent
d1147366f2
commit
dbe072b762
@ -25,12 +25,12 @@ from qrexec.policy import utils, parser
|
|||||||
|
|
||||||
|
|
||||||
class JustEvaluateAskResolution(parser.AskResolution):
|
class JustEvaluateAskResolution(parser.AskResolution):
|
||||||
def execute(self, caller_ident):
|
async def execute(self, caller_ident):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
class JustEvaluateAllowResolution(parser.AllowResolution):
|
class JustEvaluateAllowResolution(parser.AllowResolution):
|
||||||
def execute(self, caller_ident):
|
async def execute(self, caller_ident):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user