Revert "PR CI Testing (#1472)" (#1474)

This reverts commit 3d0803957d.
This commit is contained in:
Daniel W. Anner
2023-07-19 10:32:03 -04:00
committed by GitHub
parent 3d0803957d
commit e42a14b180
8 changed files with 9 additions and 198 deletions

View File

@ -1,14 +0,0 @@
import pickle
def write_pickle_data(data, file_path):
with open(file_path, 'wb') as pickle_file:
pickle.dump(data, pickle_file)
pickle_file.close()
def read_pickle_data(file_path):
with open(file_path, 'rb') as pickle_file:
data = pickle.load(pickle_file)
pickle_file.close()
return data