Skip to content

Commit 11e969f

Browse files
fix duplicate argument after merge
1 parent 2e3ca30 commit 11e969f

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

datawrapper/__main__.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,6 @@ def get_charts(
614614
search: str = "",
615615
order: str = "DESC",
616616
order_by: str = "createdAt",
617-
folder_id: str = "",
618617
limit: int = 25,
619618
folder_id: str = "",
620619
team_id: str = "",
@@ -633,8 +632,6 @@ def get_charts(
633632
Result order (ascending or descending), by default "DESC"
634633
order_by : str, optional
635634
Attribute to order by. One of createdAt, email, id, or name, by default "createdAt"
636-
folder_id: str, optional
637-
ID of the folder to search charts in, by default ""
638635
limit : int, optional
639636
Maximum items to fetch, by default 25
640637
folder_id : str, optional
@@ -662,8 +659,6 @@ def get_charts(
662659
_query["order"] = order
663660
if order_by:
664661
_query["orderBy"] = order_by
665-
if folder_id:
666-
_query["folderId"] = folder_id
667662
if limit:
668663
_query["limit"] = str(limit)
669664
if folder_id:

0 commit comments

Comments
 (0)