Skip to content

Commit 14b90d3

Browse files
author
ace-n
committed
Fix lint (since I cant run it locally)
1 parent 06341b7 commit 14b90d3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

functions/billing/main.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,5 @@ def limit_use_appengine(data, context):
198198
if current_status == 'SERVING':
199199
print(f'Attempting to disable app {APP_NAME}...')
200200
body = {'servingStatus': 'USER_DISABLED'}
201-
app = apps.patch(
202-
appsId=APP_NAME, updateMask='serving_status', body=body).execute()
201+
apps.patch(appsId=APP_NAME, updateMask='serving_status', body=body).execute()
203202
# [END functions_billing_limit_appengine]

0 commit comments

Comments
 (0)