Skip to content

Instantly share code, notes, and snippets.

@garethclews
Created October 15, 2020 11:26
Show Gist options
  • Save garethclews/4944db428b21bf3ac36859bf9bcb4576 to your computer and use it in GitHub Desktop.
Save garethclews/4944db428b21bf3ac36859bf9bcb4576 to your computer and use it in GitHub Desktop.
implicit line continuation
books = (Book
.objects
.filter(author__in = favourite_authors)
.select_related('author', 'publisher')
.order_by('title'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment