Skip to content

Commit 18fad2d

Browse files
committed
Remove component loader deprecation from pr.
1 parent 26a83e5 commit 18fad2d

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

dash/development/component_loader.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import collections
22
import json
33
import os
4-
import warnings
54

65
from ._py_components_generation import (
76
generate_class_file,
@@ -36,14 +35,6 @@ def load_components(metadata_path, namespace="default_namespace"):
3635
`type`, `valid_kwargs`, and `setup`.
3736
"""
3837

39-
warnings.warn(
40-
DeprecationWarning(
41-
"Dynamic components loading has been deprecated and will be removed"
42-
" in dash 3.0.\n"
43-
f"Update {namespace} to generate components with dash-generate-components"
44-
)
45-
)
46-
4738
# Register the component lib for index include.
4839
ComponentRegistry.registry.add(namespace)
4940
components = []

0 commit comments

Comments
 (0)