Skip to content

Commit 0976714

Browse files
authored
Merge pull request #378 from GoogleCloudPlatform/flake
Use Explicit Imports
2 parents d994b91 + ed17b92 commit 0976714

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

appengine/standard/ndb/queries/snippets.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414

1515
from google.appengine.ext import ndb
1616
from guestbook import Greeting
17-
from snippets_models import * # noqa
17+
from snippets_models import (Account, Address, Article,
18+
Bar, Contact, Employee, FlexEmployee, Manager)
1819

1920

2021
def query_account_equality():

appengine/standard/ndb/queries/snippets_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414

1515
from guestbook import Greeting
1616
import snippets
17-
from snippets_models import * # noqa
17+
from snippets_models import (Account, Address, Article,
18+
Bar, Contact, FlexEmployee, Message)
1819

1920

2021
def test_query_account_equality(testbed):

0 commit comments

Comments
 (0)