diff options
author | Eric Engestrom <[email protected]> | 2018-07-18 14:40:23 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2018-07-25 20:55:35 +0100 |
commit | bbf8316fcb5b1a0f0681d75f016152b9b11adaaf (patch) | |
tree | 26cbed45384283851c2345136a88f9de5203447b | |
parent | e0347581f36507b792cbe400e8d4080509ab9d5d (diff) |
anv: fix python whitespace warning
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Dylan Baker <[email protected]>
-rw-r--r-- | src/intel/vulkan/anv_icd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_icd.py b/src/intel/vulkan/anv_icd.py index 6666fafec34..73cc6453d51 100644 --- a/src/intel/vulkan/anv_icd.py +++ b/src/intel/vulkan/anv_icd.py @@ -45,4 +45,4 @@ if __name__ == '__main__': } with open(args.out, 'w') as f: - json.dump(json_data, f, indent = 4, sort_keys=True, separators=(',', ': ')) + json.dump(json_data, f, indent=4, sort_keys=True, separators=(',', ': ')) |