Skip to content

Commit

Permalink
fix: TypeError on UnfoldForeignKeyRawIdWidget (#1004) (#1005)
Browse files Browse the repository at this point in the history
  • Loading branch information
mohsen-mahmoodi authored Jan 25, 2025
1 parent 3821421 commit 37b52ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/unfold/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -718,8 +718,8 @@ def __init__(
*INPUT_CLASSES,
attrs.get("class", "") if attrs else "",
]
)
** (attrs or {}),
),
**(attrs or {}),
}
super().__init__(rel, admin_site, attrs, using)

Expand Down

0 comments on commit 37b52ac

Please sign in to comment.