Skip to content

Commit c29950e

Browse files
authored
🐛 fix sentry_integrations default value (#1)
1 parent 4144132 commit c29950e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nonebot_plugin_sentry/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def filter_sentry_configs(cls, values: Dict[str, Any]):
2626
key: value for key, value in values.items() if key.startswith("sentry_")
2727
}
2828

29-
@validator("sentry_integrations", allow_reuse=True)
29+
@validator("sentry_integrations", allow_reuse=True, always=True)
3030
def validate_integrations(cls, v: List[Integration]):
3131
ids = {i.identifier for i in v}
3232
if LoguruIntegration.identifier not in ids:

0 commit comments

Comments
 (0)