Skip to content
Merged
Show file tree
Hide file tree
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: 2 additions & 1 deletion appengine/standard/ndb/queries/snippets.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@

from google.appengine.ext import ndb
from guestbook import Greeting
from snippets_models import * # noqa
from snippets_models import (Account, Address, Article,
Bar, Contact, Employee, FlexEmployee, Manager)


def query_account_equality():
Expand Down
3 changes: 2 additions & 1 deletion appengine/standard/ndb/queries/snippets_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@

from guestbook import Greeting
import snippets
from snippets_models import * # noqa
from snippets_models import (Account, Address, Article,
Bar, Contact, FlexEmployee, Message)


def test_query_account_equality(testbed):
Expand Down