10000 fix continuous lint (#2690) · dalequark/python-docs-samples@e235bd6 · GitHub
[go: up one dir, main page]

Skip to content

Commit e235bd6

Browse files
authored
fix continuous lint (GoogleCloudPlatform#2690)
1 parent 45b5758 commit e235bd6

File tree

1 file changed

+1
-2
lines changed
  • appengine/standard_python37/cloud_debugger

1 file changed

+1
-2
lines changed

appengine/standard_python37/cloud_debugger/main.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def __init__(self, string):
3737
self._string = string
3838

3939
def Reverse(self):
40-
if self._string is '':
40+
if self._string == '':
4141
return ''
4242

4343
chars = [c for c in self._string]
@@ -73,7 +73,6 @@ def ReverseString():
7373
'''.format(current, expected)
7474

7575

76-
7776
@app.route('/')
7877
def Hello():
7978
"""Return a friendly HTTP greeting."""

0 commit comments

Comments
 (0)
0