Files
chromium_depot_tools/recipes/recipe_modules/presubmit/examples/full.py
Takuto Ikuta 05cb270161 recipes: Remove unnecessary annotations
Python3 is used by default in recipes now and this annotation is not
necessary anymore.

Bug: 440235171
Change-Id: Ifdf357129c9e42fee3752ac1c07aa6e94171d81f
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/6875483
Commit-Queue: Scott Lee <ddoman@chromium.org>
Auto-Submit: Takuto Ikuta <tikuta@chromium.org>
Reviewed-by: Scott Lee <ddoman@chromium.org>
2025-08-25 13:24:00 -07:00

21 lines
363 B
Python
Executable File

# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
DEPS = [
'presubmit',
'recipe_engine/json'
]
def RunSteps(api):
api.presubmit()
def GenTests(api):
yield (
api.test('basic') +
api.step_data('presubmit', api.json.output({}))
)