From 670da4a6e52f2fb864768d1b93f5e0969f8469fc Mon Sep 17 00:00:00 2001 From: Thomas Mansencal Date: Wed, 29 Jul 2015 22:38:49 +1200 Subject: [PATCH] Simplify empty "print" statements. --- aces_1.0.0/python/aces_ocio/aces_config.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/aces_1.0.0/python/aces_ocio/aces_config.py b/aces_1.0.0/python/aces_ocio/aces_config.py index 42b2409..e207d20 100755 --- a/aces_1.0.0/python/aces_ocio/aces_config.py +++ b/aces_1.0.0/python/aces_ocio/aces_config.py @@ -447,7 +447,7 @@ def add_look(config, # Add this colorspace into the main list of colorspaces config_data['colorSpaces'].append(colorspace) - print('') + print() def integrate_looks_into_views(config, @@ -612,7 +612,7 @@ def create_config(config_data, alias_colorspaces.append( [reference_data, reference_data, reference_data.aliases]) - print('') + print() # print( 'color spaces : %s' % [x.name for x in sorted(config_data['colorSpaces'])]) @@ -640,7 +640,7 @@ def create_config(config_data, config_data, multiple_displays) - print('') + print() print('Adding the regular color spaces') @@ -698,9 +698,9 @@ def create_config(config_data, alias_colorspaces.append( [reference_data, colorspace, colorspace.aliases]) - print('') + print() - print('') + print() # # We add roles early so we can create alias colorspaces with the names of the roles @@ -780,7 +780,7 @@ def create_config(config_data, add_colorspace_aliases(config, reference_data, role_colorspace, [role_name], 'Roles') """ - print('') + print() # We add these at the end as some applications use the order of the colorspaces # definitions in the config to order the colorspaces in their selection lists. @@ -790,7 +790,7 @@ def create_config(config_data, for reference, colorspace, aliases in alias_colorspaces: add_colorspace_aliases(config, reference, colorspace, aliases) - print('') + print() print('Adding the diplays and views') @@ -934,7 +934,7 @@ def create_config(config_data, config.setActiveDisplays(','.join(sorted(displays))) config.setActiveViews(','.join(views)) - print('') + print() # Make sure we didn't create a bad config config.sanityCheck() -- 1.7.10.4