diff --git a/sigame/__init__.py b/sigame/__init__.py index 2061463..e448fd3 100644 --- a/sigame/__init__.py +++ b/sigame/__init__.py @@ -37,7 +37,7 @@ # Remember to select and edit a parameter file: z = input('At which redshift? (default: 0)') -# if z == '': z = '0' # for code dodumentation +if z == '': z = '0' # for code dodumentation if re.match("^\d+$",z) != None: z = 'z'+z # if z is a number, then add 'z' as a description params_file = 'parameters_'+z+'.txt' @@ -89,4 +89,4 @@ # Check that modules are of the right version # aux.check_version(np,[1,12,0]) -print('\nReady to continue!\n') \ No newline at end of file +print('\nReady to continue!\n')