Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0976714

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

File tree

Expand file treeCollapse file tree

2 files changed

+4
-2
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+4
-2
lines changed

‎appengine/standard/ndb/queries/snippets.py

Copy file name to clipboardExpand all lines: appengine/standard/ndb/queries/snippets.py
+2-1Lines 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

Copy file name to clipboardExpand all lines: appengine/standard/ndb/queries/snippets_test.py
+2-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.