Skip to content

Commit d14fee7

Browse files
committed
pep8
1 parent 2f3d3ab commit d14fee7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

codecov/__init__.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -534,9 +534,10 @@ def main(*argv, **kwargs):
534534

535535
# Build TOC
536536
# ---------
537-
toc = str((try_to_run('cd %s && git ls-files' % root) or try_to_run('git ls-files')
538-
or try_to_run('cd %s && hg locate' % root) or try_to_run('hg locate')
539-
or '').strip())
537+
toc = str((try_to_run('cd %s && git ls-files' % root)
538+
try_to_run('git ls-files') or
539+
try_to_run('cd %s && hg locate' % root) or
540+
try_to_run('hg locate') or '').strip())
540541

541542
# Detect codecov.yml location
542543
for _filename in toc.splitlines():

0 commit comments

Comments
 (0)