scanner: fix reformatting fail

This was broken by 44e8f425d :-(.
This commit is contained in:
Marcus Hoffmann 2018-07-25 18:05:04 +02:00
parent 797958c0b1
commit c44ab190bd

View file

@ -33,18 +33,18 @@ options = None
def get_gradle_compile_commands(build): def get_gradle_compile_commands(build):
compileCommands = ['compile', compileCommands = ['compile',
'provided' 'provided',
'apk' 'apk',
'implementation' 'implementation',
'api' 'api',
'compileOnly' 'compileOnly',
'runtimeOnly', 'runtimeOnly',
'releaseCompile' 'releaseCompile',
'releaseProvided' 'releaseProvided',
'releaseApk' 'releaseApk',
'releaseImplementation' 'releaseImplementation',
'releaseApi' 'releaseApi',
'releaseCompileOnly' 'releaseCompileOnly',
'releaseRuntimeOnly'] 'releaseRuntimeOnly']
if build.gradle and build.gradle != ['yes']: if build.gradle and build.gradle != ['yes']:
compileCommands += [flavor + 'Compile' for flavor in build.gradle] compileCommands += [flavor + 'Compile' for flavor in build.gradle]