Skip to content

Commit e039001

Browse files
author
Nalini Ganapati
committed
Lint
1 parent ac7f4b5 commit e039001

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

genomicsdb/scripts/genomicsdb_common.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@
3535
def normalize_path(path):
3636
if "://" in path:
3737
if path.endswith("/"):
38-
return path[0:len(path)-2]
38+
return path[0 : len(path) - 2]
3939
else:
4040
return path
4141
else:
4242
# os.path.abspath removes trailing slash
4343
return os.path.abspath(path)
4444

45-
def join_paths(path1, path2):
46-
return path1+"/"+path2
4745

46+
def join_paths(path1, path2):
47+
return path1 + "/" + path2
4848

4949

5050
def parse_vidmap_json(vidmap_file, intervals=None):

genomicsdb/scripts/genomicsdb_query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ def setup():
314314
"--no-cache",
315315
action="store_true",
316316
help="Do not use cached metadata and files with the genomicsdb query",
317-
)
317+
)
318318
parser.add_argument(
319319
"-i",
320320
"--interval",

0 commit comments

Comments
 (0)