@@ -53,7 +53,7 @@ def start_import_codes_job(
5353 )
5454 user_id = authz_user .user .id
5555 filename = f"import_user_code_{ user_id } _{ proj_id } .csv"
56- filepath = repo ._get_dst_path_for_temp_file (filename )
56+ filepath = repo .get_dst_path_for_temp_file (filename )
5757 filepath = repo .store_uploaded_file (
5858 uploaded_file = uploaded_file , filepath = filepath , fn = filename
5959 )
@@ -90,7 +90,7 @@ def start_import_tags_job(
9090 )
9191 user_id = authz_user .user .id
9292 filename = f"import_tags_{ user_id } _{ proj_id } .csv"
93- filepath = repo ._get_dst_path_for_temp_file (filename )
93+ filepath = repo .get_dst_path_for_temp_file (filename )
9494 filepath = repo .store_uploaded_file (
9595 uploaded_file = uploaded_file , filepath = filepath , fn = filename
9696 )
@@ -129,7 +129,7 @@ def start_import_project_project_metadata_job(
129129 )
130130 user_id = authz_user .user .id
131131 filename = f"import_project_project_metadata_{ proj_id } .csv"
132- filepath = repo ._get_dst_path_for_temp_file (filename )
132+ filepath = repo .get_dst_path_for_temp_file (filename )
133133 filepath = repo .store_uploaded_file (
134134 uploaded_file = uploaded_file , filepath = filepath , fn = filename
135135 )
@@ -166,7 +166,7 @@ def start_import_project_metadata_job(
166166 user_id = current_user .id
167167 random_temp_project_name = str (uuid .uuid4 ())
168168 filename = f"import_project_{ random_temp_project_name } _for_user_{ user_id } .json"
169- filepath = repo ._get_dst_path_for_temp_file (filename )
169+ filepath = repo .get_dst_path_for_temp_file (filename )
170170 filepath = repo .store_uploaded_file (
171171 uploaded_file = uploaded_file , filepath = filepath , fn = filename
172172 )
@@ -206,7 +206,7 @@ def start_import_project_job(
206206 user_id = current_user .id
207207 random_temp_project_name = str (uuid .uuid4 ())
208208 filename = f"import_project_{ random_temp_project_name } _for_user_{ user_id } .zip"
209- filepath = repo ._get_dst_path_for_temp_file (filename )
209+ filepath = repo .get_dst_path_for_temp_file (filename )
210210 filepath = repo .store_uploaded_file (
211211 uploaded_file = uploaded_file , filepath = filepath , fn = filename
212212 )
0 commit comments