chore: fix type hints

This commit is contained in:
rohitwaghchaure
2026-06-29 20:45:36 +05:30
committed by GitHub
parent 8ef7a0bb20
commit a5ee6291f0

View File

@@ -174,7 +174,7 @@ def get_columns(filters):
@frappe.whitelist()
def create_reposting_entries(rows, company):
def create_reposting_entries(rows: str | list, company: str):
if isinstance(rows, str):
rows = parse_json(rows)