()
| 326 | return web.input(layout=None).get("layout") |
| 327 | |
| 328 | def read_cookie(): |
| 329 | if "LBL" in web.ctx.env.get("HTTP_COOKIE", ""): |
| 330 | return web.cookies().get("LBL") |
| 331 | |
| 332 | if (qs_value := read_query_string()) is not None: |
| 333 | return qs_value |
no test coverage detected