Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
olpaw committed Feb 19, 2020
1 parent 8746f3f commit 142b528
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions substratevm/mx.substratevm/mx_substratevm.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,10 +414,10 @@ def _native_image(args, **kwargs):
def query_native_image(all_args, option):

def remove_quotes(val):
if len(val) >= 2 and val.startswith("'") and val.endswith("'"):
return val[1:-1].replace("\\'", "'")
else:
return val
if len(val) >= 2 and val.startswith("'") and val.endswith("'"):
return val[1:-1].replace("\\'", "'")
else:
return val

out = mx.LinesOutputCapture()
_native_image(['--dry-run'] + all_args, out=out)
Expand Down

0 comments on commit 142b528

Please sign in to comment.