Skip to content

Commit

Permalink
Update api.py
Browse files Browse the repository at this point in the history
  • Loading branch information
pgulley authored Nov 6, 2024
1 parent 912bde0 commit 6b94c0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mediacloud/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def source_list(self, platform: Optional[str] = None, name: Optional[str] = None
def feed_list(self, source_id: Optional[int] = None,
modified_since: Optional[Union[dt.datetime, int, float]] = None,
modified_before: Optional[Union[dt.datetime, int, float]] = None,
limit: Optional[int] = 0, offset: Optional[int] = 0, return_details: bool =False) -> Dict:
limit: Optional[int] = 0, offset: Optional[int] = 0, return_details: bool = False) -> Dict:
params: Dict[Any, Any] = dict(limit=limit, offset=offset)
if source_id:
params['source_id'] = source_id
Expand Down

0 comments on commit 6b94c0a

Please sign in to comment.