()
| 6 | import cPickle as pickle |
| 7 | |
| 8 | def read_database(): |
| 9 | database_filename = 'database.pickle' |
| 10 | with open(database_filename, 'r') as database_file: |
| 11 | database = pickle.load(database_file) |
| 12 | return database |
nothing calls this directly
no outgoing calls
no test coverage detected