Skip to content

Commit 8cdadfc

Browse files
authored
Update reflex/config.py
1 parent e1373b6 commit 8cdadfc

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

reflex/config.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -383,12 +383,6 @@ def _normalize_disable_plugins(self):
383383
if isinstance(entry, type) and issubclass(entry, Plugin):
384384
normalized.append(entry)
385385
elif isinstance(entry, Plugin):
386-
console.deprecate(
387-
feature_name="Passing Plugin instances to disable_plugins",
388-
reason="pass Plugin classes directly instead, e.g. disable_plugins=[SitemapPlugin]",
389-
deprecation_version="0.8.28",
390-
removal_version="0.9.0",
391-
)
392386
normalized.append(type(entry))
393387
elif isinstance(entry, str):
394388
console.deprecate(

0 commit comments

Comments
 (0)