chore: fix type hints

This commit is contained in:
rohitwaghchaure
2026-06-29 20:46:59 +05:30
committed by GitHub
parent 465c6137bd
commit dfbb282419

View File

@@ -171,7 +171,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)