mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 02:43:15 +01:00
Make the coding style more consistent with PEP-8.
This commit is contained in:
@@ -17,8 +17,8 @@
|
||||
#
|
||||
# Author: Russel Winder
|
||||
|
||||
Import ( 'environment' )
|
||||
Import('environment')
|
||||
|
||||
objects = environment.Object ( Glob ( '*.c' ) )
|
||||
objects = environment.Object(Glob('*.c'))
|
||||
|
||||
Return ( 'objects' )
|
||||
Return('objects')
|
||||
|
||||
@@ -17,8 +17,8 @@
|
||||
#
|
||||
# Author: Russel Winder
|
||||
|
||||
Import ( 'environment' )
|
||||
Import('environment')
|
||||
|
||||
objects = environment.Object ( Glob ( '*.c' ) + Glob ( '*.S' ) )
|
||||
objects = environment.Object(Glob('*.c') + Glob('*.S'))
|
||||
|
||||
Return ( 'objects' )
|
||||
Return('objects')
|
||||
|
||||
@@ -17,8 +17,8 @@
|
||||
#
|
||||
# Author: Russel Winder
|
||||
|
||||
Import ( 'environment' )
|
||||
Import('environment')
|
||||
|
||||
objects = environment.Object ( Glob ( '*.c' ) + Glob ( '*.S' ) )
|
||||
objects = environment.Object(Glob('*.c') + Glob('*.S'))
|
||||
|
||||
Return ( 'objects' )
|
||||
Return('objects')
|
||||
|
||||
@@ -17,8 +17,8 @@
|
||||
#
|
||||
# Author: Russel Winder
|
||||
|
||||
Import ( 'environment' )
|
||||
Import('environment')
|
||||
|
||||
objects = environment.Object ( Glob ( '*.c' ) + Glob ( '*.S' ) )
|
||||
objects = environment.Object(Glob('*.c') + Glob('*.S'))
|
||||
|
||||
Return ( 'objects' )
|
||||
Return('objects')
|
||||
|
||||
@@ -17,8 +17,8 @@
|
||||
#
|
||||
# Author: Russel Winder
|
||||
|
||||
Import ( 'environment' )
|
||||
Import('environment')
|
||||
|
||||
objects = environment.Object ( Glob ( '*.c' ) )
|
||||
objects = environment.Object(Glob('*.c'))
|
||||
|
||||
Return ( 'objects' )
|
||||
Return('objects')
|
||||
|
||||
@@ -17,8 +17,8 @@
|
||||
#
|
||||
# Author: Russel Winder
|
||||
|
||||
Import ( 'environment' )
|
||||
Import('environment')
|
||||
|
||||
objects = environment.Object ( Glob ( '*.c' ) )
|
||||
objects = environment.Object(Glob('*.c'))
|
||||
|
||||
Return ( 'objects' )
|
||||
Return('objects')
|
||||
|
||||
@@ -17,8 +17,8 @@
|
||||
#
|
||||
# Author: Russel Winder
|
||||
|
||||
Import ( 'environment' )
|
||||
Import('environment')
|
||||
|
||||
objects = environment.Object ( Glob ( '*.c' ) )
|
||||
objects = environment.Object(Glob('*.c'))
|
||||
|
||||
Return ( 'objects' )
|
||||
Return('objects')
|
||||
|
||||
@@ -17,8 +17,8 @@
|
||||
#
|
||||
# Author: Russel Winder
|
||||
|
||||
Import ( 'environment' )
|
||||
Import('environment')
|
||||
|
||||
objects = environment.Object ( Glob ( '*.c' ) )
|
||||
objects = environment.Object(Glob('*.c'))
|
||||
|
||||
Return ( 'objects' )
|
||||
Return('objects')
|
||||
|
||||
@@ -17,8 +17,8 @@
|
||||
#
|
||||
# Author: Russel Winder
|
||||
|
||||
Import ( 'environment' )
|
||||
Import('environment')
|
||||
|
||||
objects = environment.Object ( Glob ( '*.c' ) )
|
||||
objects = environment.Object(Glob('*.c'))
|
||||
|
||||
Return ( 'objects' )
|
||||
Return('objects')
|
||||
|
||||
@@ -17,8 +17,8 @@
|
||||
#
|
||||
# Author: Russel Winder
|
||||
|
||||
Import ( 'environment' )
|
||||
Import('environment')
|
||||
|
||||
objects = environment.Object ( Glob ( '*.c' ) )
|
||||
objects = environment.Object(Glob('*.c'))
|
||||
|
||||
Return ( 'objects' )
|
||||
Return('objects')
|
||||
|
||||
@@ -17,8 +17,8 @@
|
||||
#
|
||||
# Author: Russel Winder
|
||||
|
||||
Import ( 'environment' )
|
||||
Import('environment')
|
||||
|
||||
objects = environment.Object ( Glob ( '*.c' ) + Glob ( '*.S' ) )
|
||||
objects = environment.Object(Glob('*.c') + Glob('*.S'))
|
||||
|
||||
Return ( 'objects' )
|
||||
Return('objects')
|
||||
|
||||
Reference in New Issue
Block a user