ext/admin: fix async/non-async mismatch

This commit is contained in:
Marek Marczykowski-Górecki 2020-04-30 21:22:29 +02:00
parent d1147366f2
commit dbe072b762
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

@ -25,12 +25,12 @@ from qrexec.policy import utils, parser
class JustEvaluateAskResolution(parser.AskResolution):
def execute(self, caller_ident):
async def execute(self, caller_ident):
pass
class JustEvaluateAllowResolution(parser.AllowResolution):
def execute(self, caller_ident):
async def execute(self, caller_ident):
pass