Skip to content

Commit 4b4c0cb

Browse files
committed
fix: remove unnecessary conditional.
1 parent b732b91 commit 4b4c0cb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

erclient/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1347,7 +1347,7 @@ async def get_source_assignments(self, subject_ids: List[str] = None, source_ids
13471347
if source_ids:
13481348
params['sources'] = ','.join(source_ids)
13491349

1350-
return await self._get(f'subjectsources', params=params or None)
1350+
return await self._get(f'subjectsources', params=params)
13511351

13521352
async def get_feature_group(self, feature_group_id: str):
13531353
"""

0 commit comments

Comments
 (0)