Skip to content

Commit b9e1c64

Browse files
Takashi Matsuoleahecole
Takashi Matsuo
andauthored
chore: some lint fixes (#3736)
Co-authored-by: Leah E. Cole <[email protected]>
1 parent af991db commit b9e1c64

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

appengine/flexible/pubsub/main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
# and reduce publish latency.
4040
publisher = pubsub_v1.PublisherClient()
4141

42+
4243
# [START gae_flex_pubsub_index]
4344
@app.route('/', methods=['GET', 'POST'])
4445
def index():

appengine/flexible/scipy/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
import os
1717

1818
from flask import Flask
19-
from PIL import Image
2019
import imageio
20+
from PIL import Image
2121

2222
app = Flask(__name__)
2323

appengine/flexible/tasks/snippets_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@
1313
# limitations under the License.
1414

1515
import os
16-
import pytest
1716
import uuid
1817

18+
import pytest
19+
1920
import snippets
2021

2122
TEST_PROJECT_ID = os.getenv('GCLOUD_PROJECT')

appengine/standard_python37/cloud_debugger/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
pass
2424

2525
# Adjust logging level to INFO
26-
import logging
26+
import logging # noqa: I100
2727
logging.basicConfig(level=logging.INFO)
2828

2929
# If `entrypoint` is not defined in app.yaml, App Engine will look for an app

0 commit comments

Comments
 (0)