From 6f78262b7f4ff0d20bf2b5ef13b9e5c233422af4 Mon Sep 17 00:00:00 2001 From: Karen Pardos Olsen Date: Tue, 14 Jan 2020 10:04:14 -0700 Subject: [PATCH] Update __init__.py --- sigame/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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')