@@ -280,7 +280,7 @@ async def _post_request(
280280 version : str ,
281281 endpoint : str ,
282282 user_ip : str ,
283- ** kwargs : Unpack [_common .AkismetArguments ],
283+ ** kwargs : Unpack [akismet .AkismetArguments ],
284284 ) -> httpx .Response :
285285 """
286286 Make a POST request to the Akismet API and return the response.
@@ -315,7 +315,7 @@ async def _post_request(
315315 )
316316
317317 async def _submit (
318- self , endpoint : str , user_ip : str , ** kwargs : Unpack [_common .AkismetArguments ]
318+ self , endpoint : str , user_ip : str , ** kwargs : Unpack [akismet .AkismetArguments ]
319319 ) -> bool :
320320 """
321321 Submit ham or spam to the Akismet API.
@@ -340,7 +340,7 @@ async def _submit(
340340 # ----------------------------------------------------------------------------
341341
342342 async def comment_check (
343- self , user_ip : str , ** kwargs : Unpack [_common .AkismetArguments ]
343+ self , user_ip : str , ** kwargs : Unpack [akismet .AkismetArguments ]
344344 ) -> akismet .CheckResponse :
345345 """
346346 Check a piece of user-submitted content to determine whether it is spam.
@@ -391,7 +391,7 @@ async def comment_check(
391391 )
392392
393393 async def submit_ham (
394- self , user_ip : str , ** kwargs : Unpack [_common .AkismetArguments ]
394+ self , user_ip : str , ** kwargs : Unpack [akismet .AkismetArguments ]
395395 ) -> bool :
396396 """
397397 Inform Akismet that a piece of user-submitted comment is not spam.
@@ -433,7 +433,7 @@ async def submit_ham(
433433 return await self ._submit (_common ._SUBMIT_HAM , user_ip , ** kwargs )
434434
435435 async def submit_spam (
436- self , user_ip : str , ** kwargs : Unpack [_common .AkismetArguments ]
436+ self , user_ip : str , ** kwargs : Unpack [akismet .AkismetArguments ]
437437 ) -> bool :
438438 """
439439 Inform Akismet that a piece of user-submitted comment is spam.
0 commit comments