lemoncurry/lemoncurry/debug.py

8 lines
197 B
Python
Raw Permalink Normal View History

from debug_toolbar.middleware import show_toolbar as core_show_toolbar
def show_toolbar(request):
2023-08-10 02:52:37 -04:00
if request.path.endswith("/amp"):
return False
return core_show_toolbar(request)