Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
antgonza committed Aug 14, 2023
1 parent 6418c2e commit 5d8f70f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qp_woltka/woltka.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ def _process_database_files(database_fp):
for k in database_files['kegg'].keys():
if f'{dt}/{k}' in files:
database_files['kegg'][k] = f'{dt}/{k}'
lmap_fp = f'{database_fp}/genomes/length.map'
if exists(lmap_fp)
lmap_fp = f'{dirname(database_fp)}/genomes/length.map'
if exists(lmap_fp):
database_files['length.map'] = lmap_fp

return database_files
Expand Down

0 comments on commit 5d8f70f

Please sign in to comment.