Skip to content

Commit

Permalink
finally fixed flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
svarona committed Jan 15, 2025
1 parent 97be573 commit 6c2556e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions relecov_tools/read_bioinfo_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,9 +381,9 @@ def handling_files(self, file_list, sufix, output_folder, batch_date):
matching_files = [
f for f in os.listdir(splitted_path) if pattern.match(f)
]
full_paths = [
full_paths = [ # noqa: F841
os.path.join(splitted_path, f) for f in matching_files
] # noqa: F841
]
try:
# Dynamically import the function from the specified module
utils_name = (
Expand Down

0 comments on commit 6c2556e

Please sign in to comment.