8000 Fix lint issue and review comments · 87sanchavan/python-docs-samples@b8792d9 · GitHub
[go: up one dir, main page]

Skip to content

Commit b8792d9

Browse files
author
Jon Wayne Parrott
committed
Fix lint issue and review comments
Change-Id: I02a53961b6411247ef06d84dad7b533cb97d89f7
1 parent 0952e89 commit b8792d9

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

appengine/standard/conftest.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,14 @@
1414

1515
import os
1616

17-
import six
18-
19-
2017
# Import py.test hooks and fixtures for App Engine
2118
from gcp.testing.appengine import (
2219
login,
2320
pytest_configure,
2421
pytest_runtest_call,
2522
run_tasks,
2623
testbed)
24+
import six
2725

2826
(login)
2927
(pytest_configure)
@@ -33,7 +31,7 @@
3331

3432

3533
def pytest_ignore_collect(path, config):
36-
"""Skip App Engine tests in python 3 and if no SDK is available."""
34+
"""Skip App Engine tests in python 3 or if no SDK is available."""
3735
if 'appengine/standard' in str(path):
3836
if six.PY3:
3937
return True

0 commit comments

Comments
 (0)
0