Skip to content

Commit

Permalink
Changed incorrect path string to path
Browse files Browse the repository at this point in the history
  • Loading branch information
adityasevak123ga committed Nov 23, 2023
1 parent bbac17f commit 2c9acb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uncoverml/interface_utils.py
Expand Up @@ -13,7 +13,7 @@


def rename_files_before_upload(config):
job_results_dir = config.output_dir
job_results_dir = Path(config.output_dir)
all_paths = job_results_dir.glob('**/*')
all_files = [f for f in all_paths if f.is_file()]
all_files_ex_model = [f for f in all_files if f.name != 'config.model']
Expand Down

0 comments on commit 2c9acb0

Please sign in to comment.