mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-25 23:06:10 +01:00
Removed unnecessary parentheses
This commit is contained in:
parent
9576ad9108
commit
315c83ad87
@ -11,7 +11,7 @@ def fixAllFilesInDir( dir ):
|
|||||||
for f in os.listdir( dir ):
|
for f in os.listdir( dir ):
|
||||||
path = os.path.join( dir,f )
|
path = os.path.join( dir,f )
|
||||||
if os.path.isfile( path ):
|
if os.path.isfile( path ):
|
||||||
if( isSourceFile( path ) ):
|
if isSourceFile( path ):
|
||||||
fixFile( path )
|
fixFile( path )
|
||||||
else:
|
else:
|
||||||
fixAllFilesInDir( path )
|
fixAllFilesInDir( path )
|
||||||
|
Loading…
Reference in New Issue
Block a user