Skip to content

Commit

Permalink
update fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tunglxfast committed Dec 13, 2024
1 parent 26af513 commit 05346d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datamimic_ce/tasks/task_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,8 +376,8 @@ def gen_task_load_data_from_source(
source_data = client.get_by_page_with_query(original_query=selector, pagination=load_pagination)
else:
source_data = client.get_by_page_with_type(
table_name=stmt.type or stmt.name,
pagination=load_pagination, # type: ignore
table_name=stmt.type or stmt.name, # type: ignore
pagination=load_pagination,
)
else:
raise ValueError(f"Cannot load data from client: {type(client).__name__}")
Expand Down

0 comments on commit 05346d4

Please sign in to comment.