Skip to content

Commit 90b64f2

Browse files
fix(dramatiq): Assign an empty tuple instead of an empty list (#6220)
1 parent f2cb5b4 commit 90b64f2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sentry_sdk/integrations/dramatiq.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def sentry_patched_broker__init__(
7070
# RedisBroker does not.
7171
if len(args) == 1:
7272
middleware = args[0]
73-
args = [] # type: ignore
73+
args = ()
7474
else:
7575
middleware = None
7676

0 commit comments

Comments
 (0)