Skip to content

Commit d9475e9

Browse files
authored
Merge pull request #3361 from Erraen/pr3
Fix _ID_CONTENT check for async version
2 parents a14b0c1 + ab31c2d commit d9475e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dash/dash.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2444,8 +2444,8 @@ async def update(pathname_, search_, **states):
24442444
else self.layout
24452445
]
24462446
)
2447-
if _ID_CONTENT not in self.validation_layout:
2448-
raise Exception("`dash.page_container` not found in the layout")
2447+
if _ID_CONTENT not in self.validation_layout:
2448+
raise Exception("`dash.page_container` not found in the layout")
24492449
else:
24502450

24512451
@self.callback(

0 commit comments

Comments
 (0)