Skip to content

Commit

Permalink
fix test plugins code signature
Browse files Browse the repository at this point in the history
  • Loading branch information
jensens committed Dec 16, 2024
1 parent 4282bcd commit 6fde0b1
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions tests/data/test_wallet_google_plugins/plugins.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from edutap.wallet_google.models.callback import CallbackData
from edutap.wallet_google.models.handlers import ImageData


Expand All @@ -16,4 +15,12 @@ class TestCallbackHandler:
Implementation of edutap.wallet_google.protocols.CallbackHandler
"""

async def handle(self, pass_id: CallbackData) -> None: ...
async def handle(
self,
class_id: str,
object_id: str,
event_type: str,
exp_time_millis: int,
count: int,
nonce: str,
) -> None: ...

0 comments on commit 6fde0b1

Please sign in to comment.