Skip to content

Commit

Permalink
Applied Black
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Oct 30, 2020
1 parent 561c1d2 commit 8a4639b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion datasette/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,9 @@ async def menu_links():
"actor": request.actor if request else None,
"menu_links": menu_links,
"display_actor": display_actor,
"show_logout": request is not None and "ds_actor" in request.cookies and request.actor,
"show_logout": request is not None
and "ds_actor" in request.cookies
and request.actor,
"app_css_hash": self.app_css_hash(),
"zip": zip,
"body_scripts": body_scripts,
Expand Down

0 comments on commit 8a4639b

Please sign in to comment.