Skip to content

Commit f10dd67

Browse files
committed
fix formating
1 parent ad67412 commit f10dd67

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

databunkerpro/api.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2318,7 +2318,11 @@ def bulk_list_group_users(
23182318
Returns:
23192319
Dict[str, Any]: The API response
23202320
"""
2321-
data: Dict[str, Any] = {"unlockuuid": unlock_uuid, "offset": offset, "limit": limit}
2321+
data: Dict[str, Any] = {
2322+
"unlockuuid": unlock_uuid,
2323+
"offset": offset,
2324+
"limit": limit,
2325+
}
23222326
if isinstance(group_name, int) or str(group_name).isdigit():
23232327
data["groupid"] = group_name
23242328
else:

0 commit comments

Comments
 (0)