Skip to content

Commit 099ced6

Browse files
committed
Fix lint
1 parent edb8ee1 commit 099ced6

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/local/butler/scripts/run_task.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,17 @@
1313
# limitations under the License.
1414
"""Run a task locally."""
1515

16+
from clusterfuzz._internal.bot.fuzzers import init
1617
from clusterfuzz._internal.bot.tasks import commands
1718
from clusterfuzz._internal.system import environment
18-
from clusterfuzz._internal.bot.fuzzers import init
19+
1920
# from local.butler.run_bot
2021

22+
2123
def execute(args):
2224
"""Build keywords."""
2325
environment.set_bot_environment()
2426
init.run()
25-
commands.process_command_impl('fuzz', 'libFuzzer', 'libfuzzer_asan_log4j2', True, True)
26-
pass
27+
commands.process_command_impl('fuzz', 'libFuzzer', 'libfuzzer_asan_log4j2',
28+
True, True)
29+
pass

0 commit comments

Comments
 (0)