summaryrefslogtreecommitdiff
path: root/inputoutput.py
diff options
context:
space:
mode:
authorinternetlandlord <f.fredhenry@gmail.com>2022-10-31 13:52:22 -0500
committerinternetlandlord <f.fredhenry@gmail.com>2022-10-31 13:52:22 -0500
commitb8a2b8d9aee28d5ef1753d8ebdfea480b9603c48 (patch)
treee220db1b7610a61fff8c7aeff01795a68b45c31a /inputoutput.py
parent7ccfafb0c07b38524270ebcd61ed03984332ab5a (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-xinputoutput.py2
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')