Skip to content

Commit f0165d3

Browse files
authored
Merge branch 'dev' into fix-jupyter-deprecation-warning
2 parents 733e085 + ef6bcf6 commit f0165d3

File tree

2 files changed

+13
-20
lines changed

2 files changed

+13
-20
lines changed

components/dash-html-components/scripts/data/attributes.json

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -226,11 +226,8 @@
226226
"button",
227227
"fieldset",
228228
"input",
229-
"label",
230-
"meter",
231229
"object",
232230
"output",
233-
"progress",
234231
"select",
235232
"textarea"
236233
],
@@ -993,28 +990,13 @@
993990
"target"
994991
],
995992
"label": [
996-
"htmlFor",
997-
"form"
993+
"htmlFor"
998994
],
999995
"output": [
1000996
"htmlFor",
1001997
"form",
1002998
"name"
1003999
],
1004-
"meter": [
1005-
"form",
1006-
"high",
1007-
"low",
1008-
"max",
1009-
"min",
1010-
"optimum",
1011-
"value"
1012-
],
1013-
"progress": [
1014-
"form",
1015-
"max",
1016-
"value"
1017-
],
10181000
"canvas": [
10191001
"height",
10201002
"width"
@@ -1025,6 +1007,14 @@
10251007
"type",
10261008
"width"
10271009
],
1010+
"meter": [
1011+
"high",
1012+
"low",
1013+
"max",
1014+
"min",
1015+
"optimum",
1016+
"value"
1017+
],
10281018
"base": [
10291019
"href",
10301020
"target"
@@ -1035,6 +1025,10 @@
10351025
"marquee": [
10361026
"loop"
10371027
],
1028+
"progress": [
1029+
"max",
1030+
"value"
1031+
],
10381032
"source": [
10391033
"media",
10401034
"sizes",

dash/_get_app.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ def with_app_context_async(func):
2323
async def wrap(self, *args, **kwargs):
2424
app_context.set(self)
2525
ctx = copy_context()
26-
print("copied and set")
2726
return await ctx.run(func, self, *args, **kwargs)
2827

2928
return wrap

0 commit comments

Comments
 (0)