diff options
author | internetlandlord <f.fredhenry@gmail.com> | 2022-10-31 13:52:22 -0500 |
---|---|---|
committer | internetlandlord <f.fredhenry@gmail.com> | 2022-10-31 13:52:22 -0500 |
commit | b8a2b8d9aee28d5ef1753d8ebdfea480b9603c48 (patch) | |
tree | e220db1b7610a61fff8c7aeff01795a68b45c31a /inputoutput.py | |
parent | 7ccfafb0c07b38524270ebcd61ed03984332ab5a (diff) |
Re-configured inputoutput to remove appending in egress function. Add appending to each algorithm script to denote sorting job performed
Diffstat (limited to 'inputoutput.py')
-rwxr-xr-x | inputoutput.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inputoutput.py b/inputoutput.py index dd20da6..f1a7c91 100755 --- a/inputoutput.py +++ b/inputoutput.py @@ -31,7 +31,7 @@ def ingressCSV(location): def egressCSV(row,location): # create a new file with -sorted - location = location[:-4]+"-sorted"+location[-4:] + # location = location[:-4]+"-sorted"+location[-4:] # open file to write f = open(location,'w') |