Skip to content
Closed

AI junk #6118

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/flask/wrappers.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,9 @@ def blueprints(self) -> list[str]:
if name is None:
return []

if "." not in name:
return [name]

return _split_blueprint_path(name)

def _load_form_data(self) -> None:
Expand Down
Loading