Skip to content

chore: some lint fixes #3736

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 12, 2020
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
1 change: 1 addition & 0 deletions appengine/flexible/pubsub/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
# and reduce publish latency.
publisher = pubsub_v1.PublisherClient()


# [START gae_flex_pubsub_index]
@app.route('/', methods=['GET', 'POST'])
def index():
Expand Down
2 changes: 1 addition & 1 deletion appengine/flexible/scipy/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
import os

from flask import Flask
from PIL import Image
import imageio
from PIL import Image

app = Flask(__name__)

Expand Down
3 changes: 2 additions & 1 deletion appengine/flexible/tasks/snippets_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@
# limitations under the License.

import os
import pytest
import uuid

import pytest

import snippets

TEST_PROJECT_ID = os.getenv('GCLOUD_PROJECT')
Expand Down
2 changes: 1 addition & 1 deletion appengine/standard_python37/cloud_debugger/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
pass

# Adjust logging level to INFO
import logging
import logging # noqa: I100
logging.basicConfig(level=logging.INFO)

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