Skip to content

Commit

Permalink
Naming best practices
Browse files Browse the repository at this point in the history
  • Loading branch information
pradeeban committed Jul 3, 2021
1 parent 66c546f commit 9629ab6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/cold-extraction/ColdDataRetriever.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

from collections import defaultdict

def initialize_Values(valuesDict):
def initialize_config_and_execute(valuesDict):
global storescp_processes, niffler_processes, nifflerscp_str, qbniffler_str
global storage_folder, file_path, csv_file, extraction_type, accession_index, patient_index, date_index, date_type, date_format, email, send_email, system_json
global DCM4CHE_BIN, SRC_AET, QUERY_AET, DEST_AET, NIGHTLY_ONLY, START_HOUR, END_HOUR, IS_EXTRACTION_NOT_RUNNING, NIFFLER_ID, MAX_PROCESSES, SEPARATOR
Expand Down
2 changes: 1 addition & 1 deletion modules/frontend/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def cold_extraction():
import io
sys.path.append("../cold-extraction/")
import ColdDataRetriever
x = ColdDataRetriever.initialize_Values(cold_extraction_values)
x = ColdDataRetriever.initialize_config_and_execute(cold_extraction_values)
return render_template('cold_extraction.html', logs = logs, files_list = files_present_in_server)
else:
return render_template('cold_extraction.html', logs = logs, files_list = files_present_in_server)
Expand Down

0 comments on commit 9629ab6

Please sign in to comment.