fix: correct get linked payments type hint in bank reconcilliation tool (#52982)

fix: correct type hint for bank reconcilliation tool
This commit is contained in:
Shllokkk
2026-02-26 12:41:40 +05:30
committed by GitHub
parent 5d46e1a7b1
commit 8c46e06e04

View File

@@ -492,7 +492,7 @@ def reconcile_vouchers(bank_transaction_name: str, vouchers: str):
@frappe.whitelist()
def get_linked_payments(
bank_transaction_name: str,
document_types: list[str] | None = None,
document_types: str | list[str] | None = None,
from_date: str | date | None = None,
to_date: str | date | None = None,
filter_by_reference_date: bool | None = None,