From 315c83ad87d3ef8fce2a4bd3e5d77866ba2b7c78 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Wed, 4 Nov 2015 18:49:19 +0000 Subject: [PATCH] Removed unnecessary parentheses --- scripts/fixTrailingWhitespace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/fixTrailingWhitespace.py b/scripts/fixTrailingWhitespace.py index 0ffe8e91..a1b6bbe8 100644 --- a/scripts/fixTrailingWhitespace.py +++ b/scripts/fixTrailingWhitespace.py @@ -11,7 +11,7 @@ def fixAllFilesInDir( dir ): for f in os.listdir( dir ): path = os.path.join( dir,f ) if os.path.isfile( path ): - if( isSourceFile( path ) ): + if isSourceFile( path ): fixFile( path ) else: fixAllFilesInDir( path )