Skip to content

Commit a8564a0

Browse files
committed
refacotr: standardize type annotattion
1 parent 1cd6792 commit a8564a0

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

mpesakit/services/transaction.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""Facade for M-Pesa Transaction Status API interactions."""
22

3-
from typing import Optional
4-
53
from mpesakit.auth import TokenManager
64
from mpesakit.http_client import HttpClient
75
from mpesakit.transaction_status import (
@@ -35,7 +33,7 @@ def query_status(
3533
occasion: str = "",
3634
command_id: str | None = None,
3735
remarks: str | None = None,
38-
original_conversation_id: Optional[str] = None,
36+
original_conversation_id: str | None = None,
3937
**kwargs,
4038
) -> TransactionStatusResponse:
4139
"""Query the status of a transaction.

0 commit comments

Comments
 (0)